mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 72.0.3615.0 (#609159)
- The |category| value for all TRACE calls from CEF client applications is now "cef.client" due to https://crrev.com/331266377d. - The |with_menu_marker| parameter to CreateMenuButton has been removed due to https://crrev.com/7f7e382118.
This commit is contained in:
@ -1771,8 +1771,8 @@ void CefBrowserHostImpl::SendCommand(
|
||||
|
||||
// Execute on the UI thread because CefResponseManager is not thread safe.
|
||||
if (CEF_CURRENTLY_ON_UIT()) {
|
||||
TRACE_EVENT2("libcef", "CefBrowserHostImpl::SendCommand", "frame_id",
|
||||
frame_id, "needsResponse", responseHandler.get() ? 1 : 0);
|
||||
TRACE_EVENT2("cef", "CefBrowserHostImpl::SendCommand", "frame_id", frame_id,
|
||||
"needsResponse", responseHandler.get() ? 1 : 0);
|
||||
Cef_Request_Params params;
|
||||
params.name = "execute-command";
|
||||
params.frame_id = frame_id;
|
||||
@ -1810,8 +1810,8 @@ void CefBrowserHostImpl::SendCode(
|
||||
|
||||
// Execute on the UI thread because CefResponseManager is not thread safe.
|
||||
if (CEF_CURRENTLY_ON_UIT()) {
|
||||
TRACE_EVENT2("libcef", "CefBrowserHostImpl::SendCommand", "frame_id",
|
||||
frame_id, "needsResponse", responseHandler.get() ? 1 : 0);
|
||||
TRACE_EVENT2("cef", "CefBrowserHostImpl::SendCommand", "frame_id", frame_id,
|
||||
"needsResponse", responseHandler.get() ? 1 : 0);
|
||||
Cef_Request_Params params;
|
||||
params.name = "execute-code";
|
||||
params.frame_id = frame_id;
|
||||
|
Reference in New Issue
Block a user