mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 71.0.3578.0 (#599034)
This commit is contained in:
@@ -147,6 +147,9 @@ IPC_MESSAGE_ROUTED1(CefMsg_Response, Cef_Response_Params)
|
||||
// has been processed.
|
||||
IPC_MESSAGE_ROUTED1(CefMsg_ResponseAck, int /* request_id */)
|
||||
|
||||
// Tells the renderer that loading has stopped.
|
||||
IPC_MESSAGE_ROUTED0(CefMsg_DidStopLoading)
|
||||
|
||||
// Tells the render frame to load all blocked plugins with the given identifier.
|
||||
// Based on ChromeViewMsg_LoadBlockedPlugins.
|
||||
IPC_MESSAGE_ROUTED1(CefViewMsg_LoadBlockedPlugins, std::string /* identifier */)
|
||||
|
@@ -1,8 +1,8 @@
|
||||
This directory provides API definitions for CEF. Some extensions are implemented
|
||||
using Mojo and others use an older JSON-based format.
|
||||
|
||||
<api> is the name of the API definition (e.g. 'streams_private').
|
||||
<class> is the name of the class implementation (e.g. 'StreamsPrivateAPI').
|
||||
<api> is the name of the API definition (e.g. 'alarms').
|
||||
<class> is the name of the class implementation (e.g. 'AlarmManager').
|
||||
|
||||
To add a new extension API implemented only in CEF ***:
|
||||
|
||||
|
@@ -507,7 +507,7 @@ void CefRequestImpl::Get(blink::WebURLRequest& request,
|
||||
int64& upload_data_size) const {
|
||||
base::AutoLock lock_scope(lock_);
|
||||
|
||||
request.SetRequestContext(blink::WebURLRequest::kRequestContextInternal);
|
||||
request.SetRequestContext(blink::mojom::RequestContextType::INTERNAL);
|
||||
request.SetURL(url_);
|
||||
request.SetHTTPMethod(blink::WebString::FromUTF8(method_));
|
||||
|
||||
|
Reference in New Issue
Block a user