mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Add CefV8ContextHandler::OnUncaughtException callback (issue #736).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@890 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
		| @@ -100,6 +100,17 @@ typedef struct _cef_render_process_handler_t { | ||||
|       struct _cef_browser_t* browser, struct _cef_frame_t* frame, | ||||
|       struct _cef_v8context_t* context); | ||||
|  | ||||
|   /// | ||||
|   // Called for global uncaught exceptions. Execution of this callback is | ||||
|   // disabled by default. To enable set | ||||
|   // CefSettings.uncaught_exception_stack_size > 0. | ||||
|   /// | ||||
|   void (CEF_CALLBACK *on_uncaught_exception)( | ||||
|       struct _cef_render_process_handler_t* self, | ||||
|       struct _cef_browser_t* browser, struct _cef_frame_t* frame, | ||||
|       struct _cef_v8context_t* context, struct _cef_v8exception_t* exception, | ||||
|       struct _cef_v8stack_trace_t* stackTrace); | ||||
|  | ||||
|   /// | ||||
|   // Called when a new node in the the browser gets focus. The |node| value may | ||||
|   // be NULL if no specific node has gained focus. The node object passed to | ||||
|   | ||||
		Reference in New Issue
	
	Block a user