All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cef.callback.CefBeforeDownloadCallback Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.

package org.cef.callback;

/**
 * Callback interface used to asynchronously continue a download.
 */
public interface CefBeforeDownloadCallback {
  /**
   * Call to continue the download.
   * @param downloadPath Set it to the full file path for the download
   * including the file name or leave blank to use the suggested name and
   * the default temp directory.
   * @param showDialog Set it to true if you do wish to show the default
   * "Save As" dialog.
   */
  public void Continue(String downloadPath, boolean showDialog);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy