| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( | 76 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( |
| 77 const base::FilePath& partition_path) override; | 77 const base::FilePath& partition_path) override; |
| 78 base::FilePath GetPath() const override; | 78 base::FilePath GetPath() const override; |
| 79 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; | 79 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; |
| 80 content::ResourceContext* GetResourceContext() override; | 80 content::ResourceContext* GetResourceContext() override; |
| 81 content::BrowserPluginGuestManager* GetGuestManager() override; | 81 content::BrowserPluginGuestManager* GetGuestManager() override; |
| 82 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | 82 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; |
| 83 content::PushMessagingService* GetPushMessagingService() override; | 83 content::PushMessagingService* GetPushMessagingService() override; |
| 84 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; | 84 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; |
| 85 content::PermissionManager* GetPermissionManager() override; | 85 content::PermissionManager* GetPermissionManager() override; |
| 86 content::BackgroundFetchClient* GetBackgroundFetchClient() override; |
| 86 content::BackgroundSyncController* GetBackgroundSyncController() override; | 87 content::BackgroundSyncController* GetBackgroundSyncController() override; |
| 87 net::URLRequestContextGetter* CreateRequestContext( | 88 net::URLRequestContextGetter* CreateRequestContext( |
| 88 content::ProtocolHandlerMap* protocol_handlers, | 89 content::ProtocolHandlerMap* protocol_handlers, |
| 89 content::URLRequestInterceptorScopedVector request_interceptors) override; | 90 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 90 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 91 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 91 const base::FilePath& partition_path, | 92 const base::FilePath& partition_path, |
| 92 bool in_memory, | 93 bool in_memory, |
| 93 content::ProtocolHandlerMap* protocol_handlers, | 94 content::ProtocolHandlerMap* protocol_handlers, |
| 94 content::URLRequestInterceptorScopedVector request_interceptors) override; | 95 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 95 net::URLRequestContextGetter* CreateMediaRequestContext() override; | 96 net::URLRequestContextGetter* CreateMediaRequestContext() override; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 // components/keyed_service/content/browser_context_keyed_service_factory.* | 267 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 267 | 268 |
| 268 Profile::Delegate* delegate_; | 269 Profile::Delegate* delegate_; |
| 269 | 270 |
| 270 chrome_browser_net::Predictor* predictor_; | 271 chrome_browser_net::Predictor* predictor_; |
| 271 | 272 |
| 272 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 273 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 273 }; | 274 }; |
| 274 | 275 |
| 275 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 276 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |