| Index: chrome/browser/profiles/profile.h
|
| diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h
|
| index 6f8435145cc3be731d00b414bbc784cef897cbe5..d7bde712eb8e582a13b352957ca2fd9b387f3a00 100644
|
| --- a/chrome/browser/profiles/profile.h
|
| +++ b/chrome/browser/profiles/profile.h
|
| @@ -15,7 +15,6 @@
|
| #include "components/domain_reliability/clear_mode.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| -#include "net/url_request/url_request_job_factory.h"
|
|
|
| class ChromeAppCacheService;
|
| class ExtensionService;
|
| @@ -265,7 +264,7 @@ class Profile : public content::BrowserContext {
|
| // TODO(ajwong): Remove once http://crbug.com/159193 is resolved.
|
| virtual net::URLRequestContextGetter* CreateRequestContext(
|
| content::ProtocolHandlerMap* protocol_handlers,
|
| - content::ProtocolHandlerScopedVector protocol_interceptors) = 0;
|
| + content::URLRequestInterceptorScopedVector request_interceptors) = 0;
|
|
|
| // Creates the net::URLRequestContextGetter for a StoragePartition. Should
|
| // only be called once per partition_path per ContentBrowserClient object.
|
| @@ -277,7 +276,7 @@ class Profile : public content::BrowserContext {
|
| const base::FilePath& partition_path,
|
| bool in_memory,
|
| content::ProtocolHandlerMap* protocol_handlers,
|
| - content::ProtocolHandlerScopedVector protocol_interceptors) = 0;
|
| + content::URLRequestInterceptorScopedVector request_interceptors) = 0;
|
|
|
| // Returns the last directory that was chosen for uploading or opening a file.
|
| virtual base::FilePath last_selected_directory() = 0;
|
|
|