cef_request_handler_t.on_render_process_terminated

Called on the browser process UI thread when the render process terminates unexpectedly. |status| indicates how the process terminated. |error_code| and |error_string| represent the error that would be displayed in Chrome's "Aw, Snap!" view. Possible |error_code| values include cef_resultcode_t non-normal exit values and platform-specific crash values (for example, a Posix signal or Windows hardware exception).

struct cef_request_handler_t
extern (System)
void function(cef_request_handler_t* self, cef_browser_t* browser, cef_termination_status_t status, int error_code, const(cef_string_t)* error_string) nothrow on_render_process_terminated;

Meta