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
Copy file name to clipboardExpand all lines: api/cefpython.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -237,8 +237,6 @@ Description from upstream CEF:
237
237
238
238
Post a task for execution on the thread associated with this task runner. Execution will occur asynchronously. Only Browser process threads are allowed.
239
239
240
-
An example usage is in the wxpython.py example on Windows, in implementation of LifespanHandler.OnBeforePopup().
241
-
242
240
List of threads in the Browser process:
243
241
* cef.TID_UI: The main thread in the browser. This will be the same as the main application thread if cefpython.Initialize() is called with a ApplicationSettings.multi_threaded_message_loop value of false. Do not perform blocking tasks on this thread. All tasks posted after CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown() are guaranteed to run. This thread will outlive all other CEF threads.
Copy file name to clipboardExpand all lines: docs/Migration-guide.md
+16-6Lines changed: 16 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,9 @@ Table of contents:
36
36
*[v55.3+ Handlers' callbacks and other interfaces](#v553-handlers-callbacks-and-other-interfaces)
37
37
*[v56+ MacOS 10.9+ required to run](#v56-macos-109-required-to-run)
38
38
*[v57.1+ High DPI support on Windows](#v571-high-dpi-support-on-windows)
39
-
*[v66.0+ Linux patch that fixed HTTPS cache problems on pages with certificate errors was disabled](#v660-linux-patch-that-fixed-https-cache-problems-on-pages-with-certificate-errors-was-disabled)
40
-
*[v66.0+ DisplayHandler.OnConsoleMessage new param 'level'](#v660-displayhandleronconsolemessage-new-param-level)
39
+
*[v66+ Linux patch that fixed HTTPS cache problems on pages with certificate errors was disabled](#v66-linux-patch-that-fixed-https-cache-problems-on-pages-with-certificate-errors-was-disabled)
40
+
*[v66+ DisplayHandler.OnConsoleMessage has new param 'level'](#v66-displayhandleronconsolemessage-has-new-param-level)
41
+
*[v66+ LifespanHandler.OnBeforePopup is now called on UI thread](#v66-lifespanhandleronbeforepopup-is-now-called-on-ui-thread)
41
42
42
43
43
44
@@ -298,15 +299,24 @@ for High DPI support. In previous versions the default value was
298
299
"system_dpi" and if you have set it explicitilly in your application,
299
300
then you should change it to an empty string now.
300
301
301
-
## v66.0+ Linux patch that fixed HTTPS cache problems on pages with certificate errors was disabled
302
+
303
+
## v66+ Linux patch that fixed HTTPS cache problems on pages with certificate errors was disabled
302
304
303
305
That patch allowed for HTTPS caching to work when using self-signed
304
-
certificates (or any invalid certificate). This doesn't work anymore. See
305
-
Issue [#125](../../../issues/125) for more details.
306
+
certificates (or any invalid certificate). This doesn't work anymore.
307
+
If you need this feature then you can build from sources and apply
308
+
the patch yourself. See Issue [#125](../../../issues/125) for more details.
306
309
307
310
308
-
## v66.0+ DisplayHandler.OnConsoleMessage new param 'level'
311
+
## v66+ DisplayHandler.OnConsoleMessage has new param 'level'
309
312
310
313
The DisplayHandler.[OnConsoleMessage](../api/DisplayHandler.md#onconsolemessage)
311
314
callback has a new param `level`.
312
315
316
+
317
+
## v66+ LifespanHandler.OnBeforePopup is now called on UI thread
318
+
319
+
The LifespanHandler.[OnBeforePopup](../api/LifespanHandler.md#onbeforepopup)
320
+
callback is now called on UI thread. Previously it was called on
0 commit comments