| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index f8e169cda6587bc1c3e11663061e4f4d28c4eb0a..a4811b7a1e9223ab67bbc577aa4ea149748355ea 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -1087,29 +1087,6 @@ bool ChromeContentBrowserClient::LogWebUIUrl(const GURL& web_ui_url) const {
|
| return webui::LogWebUIUrl(web_ui_url);
|
| }
|
|
|
| -net::URLRequestContextGetter*
|
| -ChromeContentBrowserClient::CreateRequestContext(
|
| - content::BrowserContext* browser_context,
|
| - content::ProtocolHandlerMap* protocol_handlers,
|
| - content::URLRequestInterceptorScopedVector request_interceptors) {
|
| - Profile* profile = Profile::FromBrowserContext(browser_context);
|
| - return profile->CreateRequestContext(protocol_handlers,
|
| - std::move(request_interceptors));
|
| -}
|
| -
|
| -net::URLRequestContextGetter*
|
| -ChromeContentBrowserClient::CreateRequestContextForStoragePartition(
|
| - content::BrowserContext* browser_context,
|
| - const base::FilePath& partition_path,
|
| - bool in_memory,
|
| - content::ProtocolHandlerMap* protocol_handlers,
|
| - content::URLRequestInterceptorScopedVector request_interceptors) {
|
| - Profile* profile = Profile::FromBrowserContext(browser_context);
|
| - return profile->CreateRequestContextForStoragePartition(
|
| - partition_path, in_memory, protocol_handlers,
|
| - std::move(request_interceptors));
|
| -}
|
| -
|
| bool ChromeContentBrowserClient::IsHandledURL(const GURL& url) {
|
| return ProfileIOData::IsHandledURL(url);
|
| }
|
|
|