Interface CefFileDialogCallback


  • public interface CefFileDialogCallback
    Callback interface for asynchronous continuation of file dialog requests.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void Cancel()
      Cancel the file selection.
      void Continue​(int selectedAcceptFilter, java.util.Vector<java.lang.String> filePaths)
      Continue the file selection with the specified file_paths.
    • Method Detail

      • Continue

        void Continue​(int selectedAcceptFilter,
                      java.util.Vector<java.lang.String> filePaths)
        Continue the file selection with the specified file_paths. This may be a single value or a list of values depending on the dialog mode. An empty value is treated the same as calling Cancel().
        Parameters:
        selectedAcceptFilter - 0-based index of the value selected from the accept filters array passed to CefDialogHandler::OnFileDialog.
        filePaths - list of selected file paths or an empty list.
      • Cancel

        void Cancel()
        Cancel the file selection.