| Index: android_webview/browser/aw_content_browser_client.h
|
| diff --git a/android_webview/browser/aw_content_browser_client.h b/android_webview/browser/aw_content_browser_client.h
|
| index 49a2abc43afb7417a22f33371f22d3b552fdbd3a..b313e58ebf675ab7ba1e5805429c663e917fe1b2 100644
|
| --- a/android_webview/browser/aw_content_browser_client.h
|
| +++ b/android_webview/browser/aw_content_browser_client.h
|
| @@ -10,7 +10,6 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| -#include "net/url_request/url_request_job_factory.h"
|
|
|
| struct WebPreferences;
|
|
|
| @@ -46,13 +45,13 @@ class AwContentBrowserClient : public content::ContentBrowserClient {
|
| virtual net::URLRequestContextGetter* CreateRequestContext(
|
| content::BrowserContext* browser_context,
|
| content::ProtocolHandlerMap* protocol_handlers,
|
| - content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
|
| + content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE;
|
| virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
|
| content::BrowserContext* browser_context,
|
| const base::FilePath& partition_path,
|
| bool in_memory,
|
| content::ProtocolHandlerMap* protocol_handlers,
|
| - content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
|
| + content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE;
|
| virtual std::string GetCanonicalEncodingNameByAliasName(
|
| const std::string& alias_name) OVERRIDE;
|
| virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
|
|
|