Index: android_webview/browser/aw_content_browser_client.cc |
diff --git a/android_webview/browser/aw_content_browser_client.cc b/android_webview/browser/aw_content_browser_client.cc |
index 1d0e0ae7252aa0d39827f15fdf2086f2fd35ceab..62aff355d1f423f2da77c444b2dd1632dcad6a32 100644 |
--- a/android_webview/browser/aw_content_browser_client.cc |
+++ b/android_webview/browser/aw_content_browser_client.cc |
@@ -212,9 +212,9 @@ void AwContentBrowserClient::RenderProcessWillLaunch( |
net::URLRequestContextGetter* AwContentBrowserClient::CreateRequestContext( |
content::BrowserContext* browser_context, |
content::ProtocolHandlerMap* protocol_handlers, |
- content::ProtocolHandlerScopedVector protocol_interceptors) { |
+ content::URLRequestInterceptorScopedVector request_interceptors) { |
DCHECK(browser_context_.get() == browser_context); |
- // TODO(mkosiba,kinuko): protocol_interceptors should be hooked up in the |
+ // TODO(mkosiba,kinuko): request_interceptors should be hooked up in the |
// downstream. (crbug.com/350286) |
return browser_context_->CreateRequestContext(protocol_handlers); |
} |
@@ -225,8 +225,10 @@ AwContentBrowserClient::CreateRequestContextForStoragePartition( |
const base::FilePath& partition_path, |
bool in_memory, |
content::ProtocolHandlerMap* protocol_handlers, |
- content::ProtocolHandlerScopedVector protocol_interceptors) { |
+ content::URLRequestInterceptorScopedVector request_interceptors) { |
DCHECK(browser_context_.get() == browser_context); |
+ // TODO(mkosiba,kinuko): request_interceptors should be hooked up in the |
+ // downstream. (crbug.com/350286) |
return browser_context_->CreateRequestContextForStoragePartition( |
partition_path, in_memory, protocol_handlers); |
} |