| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 virtual PrefService* GetPrefs() OVERRIDE; | 126 virtual PrefService* GetPrefs() OVERRIDE; |
| 127 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 127 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 128 virtual net::URLRequestContextGetter* | 128 virtual net::URLRequestContextGetter* |
| 129 GetRequestContextForExtensions() OVERRIDE; | 129 GetRequestContextForExtensions() OVERRIDE; |
| 130 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 130 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 131 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 131 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 132 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 132 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
| 133 virtual base::Time GetStartTime() const OVERRIDE; | 133 virtual base::Time GetStartTime() const OVERRIDE; |
| 134 virtual net::URLRequestContextGetter* CreateRequestContext( | 134 virtual net::URLRequestContextGetter* CreateRequestContext( |
| 135 content::ProtocolHandlerMap* protocol_handlers, | 135 content::ProtocolHandlerMap* protocol_handlers, |
| 136 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; | 136 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
| 137 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 137 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 138 const base::FilePath& partition_path, | 138 const base::FilePath& partition_path, |
| 139 bool in_memory, | 139 bool in_memory, |
| 140 content::ProtocolHandlerMap* protocol_handlers, | 140 content::ProtocolHandlerMap* protocol_handlers, |
| 141 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; | 141 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
| 142 virtual base::FilePath last_selected_directory() OVERRIDE; | 142 virtual base::FilePath last_selected_directory() OVERRIDE; |
| 143 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; | 143 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; |
| 144 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 144 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 145 virtual void ClearNetworkingHistorySince( | 145 virtual void ClearNetworkingHistorySince( |
| 146 base::Time time, | 146 base::Time time, |
| 147 const base::Closure& completion) OVERRIDE; | 147 const base::Closure& completion) OVERRIDE; |
| 148 virtual void ClearDomainReliabilityMonitor( | 148 virtual void ClearDomainReliabilityMonitor( |
| 149 domain_reliability::DomainReliabilityClearMode mode, | 149 domain_reliability::DomainReliabilityClearMode mode, |
| 150 const base::Closure& completion) OVERRIDE; | 150 const base::Closure& completion) OVERRIDE; |
| 151 virtual GURL GetHomePage() OVERRIDE; | 151 virtual GURL GetHomePage() OVERRIDE; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 // components/keyed_service/content/browser_context_keyed_service_factory.* | 301 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 302 | 302 |
| 303 Profile::Delegate* delegate_; | 303 Profile::Delegate* delegate_; |
| 304 | 304 |
| 305 chrome_browser_net::Predictor* predictor_; | 305 chrome_browser_net::Predictor* predictor_; |
| 306 | 306 |
| 307 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 307 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 310 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |