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
In cefpython_app.cpp the g_debug variable is set only for the Render process in
CefPythonApp::OnRenderThreadCreated(). This flag also needs to be set when
CefPythonApp class is instantiated in the Browser process.
Original issue reported on code.google.com by [email protected] on 18 Dec 2013 at 1:42
The text was updated successfully, but these errors were encountered:
When g_debug is set in the browser proces, it won't be required to call
BrowserProcessHandler_OnRenderProcessThreadCreated(). It's better get rid of
this call as it might cause a deadlock
(CefBrowserProcessHandler::OnRenderProcessThreadCreated called on the IO
thread, then it calls Python on the UI thread). Deadlock issue reported by
Michael Goffioul when porting CEF to Linux/Aura.
Original issue reported on code.google.com by
[email protected]
on 18 Dec 2013 at 1:42The text was updated successfully, but these errors were encountered: