Update to Chromium revision 9ef2aa86 (#550428)

This commit is contained in:
Marshall Greenblatt
2018-04-19 11:44:42 -04:00
parent f6c9a96a12
commit a3c55f1d26
130 changed files with 1601 additions and 1522 deletions

View File

@ -25,8 +25,13 @@ class WebURL;
namespace content {
class BrowserPluginDelegate;
class RenderFrame;
struct WebPluginInfo;
} // namespace content
namespace url {
class Origin;
}
namespace extensions {
class Dispatcher;
@ -53,10 +58,12 @@ class CefExtensionsRendererClient : public ExtensionsRendererClient {
service_manager::BinderRegistry* registry);
bool OverrideCreatePlugin(content::RenderFrame* render_frame,
const blink::WebPluginParams& params);
bool WillSendRequest(blink::WebLocalFrame* frame,
void WillSendRequest(blink::WebLocalFrame* frame,
ui::PageTransition transition_type,
const blink::WebURL& url,
GURL* new_url);
const url::Origin* initiator_origin,
GURL* new_url,
bool* attach_same_site_cookies);
void RunScriptsAtDocumentStart(content::RenderFrame* render_frame);
void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame);
void RunScriptsAtDocumentIdle(content::RenderFrame* render_frame);
@ -69,6 +76,7 @@ class CefExtensionsRendererClient : public ExtensionsRendererClient {
bool* send_referrer);
static content::BrowserPluginDelegate* CreateBrowserPluginDelegate(
content::RenderFrame* render_frame,
const content::WebPluginInfo& info,
const std::string& mime_type,
const GURL& original_url);