| Index: content/public/browser/content_browser_client.cc
|
| diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
|
| index b48cfe5544a12b4e230ad2a18f4714d1f7763fe7..60ca5738550715eab05653be83b88f40c71c8078 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -33,7 +33,7 @@ bool ContentBrowserClient::ShouldUseProcessPerSite(
|
| net::URLRequestContextGetter* ContentBrowserClient::CreateRequestContext(
|
| BrowserContext* browser_context,
|
| ProtocolHandlerMap* protocol_handlers,
|
| - ProtocolHandlerScopedVector protocol_interceptors) {
|
| + URLRequestInterceptorScopedVector request_interceptors) {
|
| return NULL;
|
| }
|
|
|
| @@ -43,7 +43,7 @@ ContentBrowserClient::CreateRequestContextForStoragePartition(
|
| const base::FilePath& partition_path,
|
| bool in_memory,
|
| ProtocolHandlerMap* protocol_handlers,
|
| - ProtocolHandlerScopedVector protocol_interceptors) {
|
| + URLRequestInterceptorScopedVector request_interceptors) {
|
| return NULL;
|
| }
|
|
|
| @@ -217,12 +217,12 @@ bool ContentBrowserClient::CanCreateWindow(
|
| const GURL& source_origin,
|
| WindowContainerType container_type,
|
| const GURL& target_url,
|
| - const content::Referrer& referrer,
|
| + const Referrer& referrer,
|
| WindowOpenDisposition disposition,
|
| const blink::WebWindowFeatures& features,
|
| bool user_gesture,
|
| bool opener_suppressed,
|
| - content::ResourceContext* context,
|
| + ResourceContext* context,
|
| int render_process_id,
|
| int opener_id,
|
| bool* no_javascript_access) {
|
| @@ -297,7 +297,7 @@ const wchar_t* ContentBrowserClient::GetResourceDllName() {
|
| #endif
|
|
|
| bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle(
|
| - content::BrowserContext* browser_context,
|
| + BrowserContext* browser_context,
|
| const GURL& url) {
|
| return false;
|
| }
|
|
|