cef_run_file_dialog_callback_t

Callback structure for cef_browser_host_t::RunFileDialog. The functions of this structure will be called on the browser process UI thread.

Members

Variables

base
cef_base_ref_counted_t base;

Base structure.

on_file_dialog_dismissed
void function(cef_run_file_dialog_callback_t* self, cef_string_list_t file_paths) nothrow on_file_dialog_dismissed;

Called asynchronously after the file dialog is dismissed. |file_paths| will be a single value or a list of values depending on the dialog mode. If the selection was cancelled |file_paths| will be NULL.

Meta