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 5ce8414f6117504a7aa6b023f9c0d81455bacf8c..c69540770e04963821bd3943bfa1b997fdad74b3 100644 |
--- a/android_webview/browser/aw_content_browser_client.cc |
+++ b/android_webview/browser/aw_content_browser_client.cc |
@@ -232,30 +232,6 @@ void AwContentBrowserClient::RenderProcessWillLaunch( |
host->AddFilter(new AwPrintingMessageFilter(host->GetID())); |
} |
-net::URLRequestContextGetter* AwContentBrowserClient::CreateRequestContext( |
- content::BrowserContext* browser_context, |
- content::ProtocolHandlerMap* protocol_handlers, |
- content::URLRequestInterceptorScopedVector request_interceptors) { |
- DCHECK_EQ(browser_context_.get(), browser_context); |
- return browser_context_->CreateRequestContext( |
- protocol_handlers, std::move(request_interceptors)); |
-} |
- |
-net::URLRequestContextGetter* |
-AwContentBrowserClient::CreateRequestContextForStoragePartition( |
- content::BrowserContext* browser_context, |
- const base::FilePath& partition_path, |
- bool in_memory, |
- content::ProtocolHandlerMap* protocol_handlers, |
- content::URLRequestInterceptorScopedVector request_interceptors) { |
- DCHECK_EQ(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, |
- std::move(request_interceptors)); |
-} |
- |
bool AwContentBrowserClient::IsHandledURL(const GURL& url) { |
if (!url.is_valid()) { |
// We handle error cases. |