Index: chrome/browser/profiles/profile_impl.h |
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h |
index 8286c052b2c9f52392bf511ac90cf841082fa6e4..f8c5bdf2332a6b11a0ea05bcf9e044dcbd5a17ba 100644 |
--- a/chrome/browser/profiles/profile_impl.h |
+++ b/chrome/browser/profiles/profile_impl.h |
@@ -96,6 +96,14 @@ class ProfileImpl : public Profile { |
content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; |
content::PermissionManager* GetPermissionManager() override; |
content::BackgroundSyncController* GetBackgroundSyncController() override; |
+ net::URLRequestContextGetter* CreateRequestContext( |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::URLRequestInterceptorScopedVector request_interceptors) override; |
+ net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
+ const base::FilePath& partition_path, |
+ bool in_memory, |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::URLRequestInterceptorScopedVector request_interceptors) override; |
// Profile implementation: |
scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override; |
@@ -120,14 +128,6 @@ class ProfileImpl : public Profile { |
net::SSLConfigService* GetSSLConfigService() override; |
bool IsSameProfile(Profile* profile) override; |
base::Time GetStartTime() const override; |
- net::URLRequestContextGetter* CreateRequestContext( |
- content::ProtocolHandlerMap* protocol_handlers, |
- content::URLRequestInterceptorScopedVector request_interceptors) override; |
- net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
- const base::FilePath& partition_path, |
- bool in_memory, |
- content::ProtocolHandlerMap* protocol_handlers, |
- content::URLRequestInterceptorScopedVector request_interceptors) override; |
base::FilePath last_selected_directory() override; |
void set_last_selected_directory(const base::FilePath& path) override; |
chrome_browser_net::Predictor* GetNetworkPredictor() override; |