mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Add OnRenderProcessTerminated and OnPluginCrashed notifications to CefLoadHandler (issue #633).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@710 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -88,6 +88,21 @@ typedef struct _cef_load_handler_t {
|
||||
struct _cef_browser_t* browser, struct _cef_frame_t* frame,
|
||||
enum cef_errorcode_t errorCode, const cef_string_t* errorText,
|
||||
const cef_string_t* failedUrl);
|
||||
|
||||
///
|
||||
// Called when the render process terminates unexpectedly. |status| indicates
|
||||
// how the process terminated.
|
||||
///
|
||||
void (CEF_CALLBACK *on_render_process_terminated)(
|
||||
struct _cef_load_handler_t* self, struct _cef_browser_t* browser,
|
||||
enum cef_termination_status_t status);
|
||||
|
||||
///
|
||||
// Called when a plugin has crashed. |plugin_path| is the path of the plugin
|
||||
// that crashed.
|
||||
///
|
||||
void (CEF_CALLBACK *on_plugin_crashed)(struct _cef_load_handler_t* self,
|
||||
struct _cef_browser_t* browser, const cef_string_t* plugin_path);
|
||||
} cef_load_handler_t;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user