Index: android_webview/browser/aw_browser_context.cc |
diff --git a/android_webview/browser/aw_browser_context.cc b/android_webview/browser/aw_browser_context.cc |
index 8c1e0ece17daeb95d41822b30edf28dc8bccf8e6..96680908f7e82f67b0c6f4593098c5b13fc109c7 100644 |
--- a/android_webview/browser/aw_browser_context.cc |
+++ b/android_webview/browser/aw_browser_context.cc |
@@ -88,7 +88,8 @@ void AwBrowserContext::AddVisitedURLs(const std::vector<GURL>& urls) { |
} |
net::URLRequestContextGetter* AwBrowserContext::CreateRequestContext( |
- content::ProtocolHandlerMap* protocol_handlers) { |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::ProtocolHandlerScopedVector protocol_interceptors) { |
// This function cannot actually create the request context because |
// there is a reentrant dependency on GetResourceContext() via |
// content::StoragePartitionImplMap::Create(). This is not fixable |
@@ -103,7 +104,8 @@ net::URLRequestContextGetter* |
AwBrowserContext::CreateRequestContextForStoragePartition( |
const base::FilePath& partition_path, |
bool in_memory, |
- content::ProtocolHandlerMap* protocol_handlers) { |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::ProtocolHandlerScopedVector protocol_interceptors) { |
NOTREACHED(); |
return NULL; |
} |