You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update to Chrome 54.0.2840.99 and CEF 3.2840.1518.gffd843c (#272).
Update to Cython 0.25.2 (#110).
Changes in API:
- Add ApplicationSettings.net_security_expiration_enabled
Key changes in upstream CEF between commits 7fe3d03...ffd843c (CEF Python 54.0 ... 54.1):
- Update to Chromium version 54.0.2840.99
- Fix PDF rendering with OSR
- Add CefRequestHandler::OnSelectClientCertificate (allows for client certificate selection programmatically)
- Fix load error when using Request->SetUrl when url contains double byte characters
- Fix crash related to channel ID support, disable channel ID support
- Net security (CT, HSTS) expiration based on build age is now disabled by default. Configurable with CefSettings.enable_net_security_expiration.
- New web plugin API: CefRegisterCdmCallback, CefRegisterWidevineCdm
Copy file name to clipboardExpand all lines: api/RequestHandler.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,15 @@
5
5
6
6
Implement this interface to handle events related to browser requests.
7
7
8
-
For an example of how to implement handler see [cefpython](cefpython.md).CreateBrowser(). For a list of all handler interfaces see [API > Client handlers](API#Client_handlers).
8
+
For an example of how to implement handler see
9
+
[cefpython](cefpython.md).CreateBrowserSync(). For a list of all handler
10
+
interfaces see [API > Client handlers](API#Client_handlers).
9
11
10
-
The `RequestHandler` tests can be found in the wxpython.py script.
12
+
The `RequestHandler` tests can be found in the old wxpython.py script (v31).
0 commit comments