File tree 3 files changed +6
-19
lines changed
3 files changed +6
-19
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,12 @@ BREAKAGE (needs updating Migration Guide doc)
20
20
- + OnPrintJob new param
21
21
- + OnPrintReset new param
22
22
23
- cef_render_process_handler.h
24
- - Remove OnBeforeNavigation in subprocess/cefpython_app.h and .cpp files
23
+ + cef_render_process_handler.h
24
+ - + Remove OnBeforeNavigation in subprocess/cefpython_app.h and .cpp files
25
25
26
26
cef_request_handler.h
27
27
- OnBeforeBrowse: new param 'user_gesture'
28
+ - update Migration Guide
28
29
29
30
internal/cef_linux.h
30
31
internal/cef_types_linux.h
@@ -44,10 +45,11 @@ internal/cef_types_win.h
44
45
internal/cef_types.h
45
46
- cef_settings_t:
46
47
- javascript_open_windows option removed (keep a dummy for BC)
48
+ - update Migration Guide
47
49
- cef_thread_id_t:
48
50
- TID_DB removed (update Migration Guide)
49
- - TID_PROCESS_LAUNCHER removed
50
- - TID_CACHE removed
51
+ - TID_PROCESS_LAUNCHER removed (update Migration Guide)
52
+ - TID_CACHE removed (update Migration Guide)
51
53
52
54
53
55
NEW FEATURES
Original file line number Diff line number Diff line change @@ -259,14 +259,6 @@ void CefPythonApp::OnBrowserDestroyed(CefRefPtr<CefBrowser> browser) {
259
259
RemoveJavascriptBindings (browser);
260
260
}
261
261
262
- bool CefPythonApp::OnBeforeNavigation (CefRefPtr<CefBrowser> browser,
263
- CefRefPtr<CefFrame> frame,
264
- CefRefPtr<CefRequest> request,
265
- cef_navigation_type_t navigation_type,
266
- bool is_redirect) {
267
- return false ;
268
- }
269
-
270
262
void CefPythonApp::OnContextCreated (CefRefPtr<CefBrowser> browser,
271
263
CefRefPtr<CefFrame> frame,
272
264
CefRefPtr<CefV8Context> context) {
Original file line number Diff line number Diff line change @@ -74,13 +74,6 @@ class CefPythonApp :
74
74
void OnBrowserDestroyed (CefRefPtr<CefBrowser> browser)
75
75
override ;
76
76
77
- bool OnBeforeNavigation (CefRefPtr<CefBrowser> browser,
78
- CefRefPtr<CefFrame> frame,
79
- CefRefPtr<CefRequest> request,
80
- cef_navigation_type_t navigation_type,
81
- bool is_redirect)
82
- override ;
83
-
84
77
void OnContextCreated (CefRefPtr<CefBrowser> browser,
85
78
CefRefPtr<CefFrame> frame,
86
79
CefRefPtr<CefV8Context> context)
You can’t perform that action at this time.
0 commit comments