| 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 <string> | 10 #include <string> |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 bool IsSupervised() const override; | 104 bool IsSupervised() const override; |
| 105 bool IsChild() const override; | 105 bool IsChild() const override; |
| 106 bool IsLegacySupervised() const override; | 106 bool IsLegacySupervised() const override; |
| 107 ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override; | 107 ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override; |
| 108 PrefService* GetPrefs() override; | 108 PrefService* GetPrefs() override; |
| 109 const PrefService* GetPrefs() const override; | 109 const PrefService* GetPrefs() const override; |
| 110 ChromeZoomLevelPrefs* GetZoomLevelPrefs() override; | 110 ChromeZoomLevelPrefs* GetZoomLevelPrefs() override; |
| 111 PrefService* GetOffTheRecordPrefs() override; | 111 PrefService* GetOffTheRecordPrefs() override; |
| 112 net::URLRequestContextGetter* GetRequestContextForExtensions() override; | 112 net::URLRequestContextGetter* GetRequestContextForExtensions() override; |
| 113 net::SSLConfigService* GetSSLConfigService() override; | 113 net::SSLConfigService* GetSSLConfigService() override; |
| 114 HostContentSettingsMap* GetHostContentSettingsMap() override; | |
| 115 bool IsSameProfile(Profile* profile) override; | 114 bool IsSameProfile(Profile* profile) override; |
| 116 base::Time GetStartTime() const override; | 115 base::Time GetStartTime() const override; |
| 117 net::URLRequestContextGetter* CreateRequestContext( | 116 net::URLRequestContextGetter* CreateRequestContext( |
| 118 content::ProtocolHandlerMap* protocol_handlers, | 117 content::ProtocolHandlerMap* protocol_handlers, |
| 119 content::URLRequestInterceptorScopedVector request_interceptors) override; | 118 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 120 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 119 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 121 const base::FilePath& partition_path, | 120 const base::FilePath& partition_path, |
| 122 bool in_memory, | 121 bool in_memory, |
| 123 content::ProtocolHandlerMap* protocol_handlers, | 122 content::ProtocolHandlerMap* protocol_handlers, |
| 124 content::URLRequestInterceptorScopedVector request_interceptors) override; | 123 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 // components/keyed_service/content/browser_context_keyed_service_factory.* | 270 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 272 | 271 |
| 273 Profile::Delegate* delegate_; | 272 Profile::Delegate* delegate_; |
| 274 | 273 |
| 275 chrome_browser_net::Predictor* predictor_; | 274 chrome_browser_net::Predictor* predictor_; |
| 276 | 275 |
| 277 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 276 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 278 }; | 277 }; |
| 279 | 278 |
| 280 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 279 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |