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:
@ -580,6 +580,26 @@ typedef struct _cef_cookie_t {
|
||||
cef_time_t expires;
|
||||
} cef_cookie_t;
|
||||
|
||||
///
|
||||
// Process termination status values.
|
||||
///
|
||||
enum cef_termination_status_t {
|
||||
///
|
||||
// Non-zero exit status.
|
||||
///
|
||||
TS_ABNORMAL_TERMINATION,
|
||||
|
||||
///
|
||||
// SIGKILL or task manager kill.
|
||||
///
|
||||
TS_PROCESS_WAS_KILLED,
|
||||
|
||||
///
|
||||
// Segmentation fault.
|
||||
///
|
||||
TS_PROCESS_CRASHED,
|
||||
};
|
||||
|
||||
///
|
||||
// Storage types.
|
||||
///
|
||||
|
Reference in New Issue
Block a user