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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 virtual history::TopSites* GetTopSites() OVERRIDE; | 91 virtual history::TopSites* GetTopSites() OVERRIDE; |
92 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 92 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
93 virtual ExtensionService* GetExtensionService() OVERRIDE; | 93 virtual ExtensionService* GetExtensionService() OVERRIDE; |
94 virtual ExtensionSpecialStoragePolicy* | 94 virtual ExtensionSpecialStoragePolicy* |
95 GetExtensionSpecialStoragePolicy() OVERRIDE; | 95 GetExtensionSpecialStoragePolicy() OVERRIDE; |
96 virtual policy::ManagedModePolicyProvider* | 96 virtual policy::ManagedModePolicyProvider* |
97 GetManagedModePolicyProvider() OVERRIDE; | 97 GetManagedModePolicyProvider() OVERRIDE; |
98 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 98 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
99 virtual PrefService* GetPrefs() OVERRIDE; | 99 virtual PrefService* GetPrefs() OVERRIDE; |
100 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 100 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
101 virtual net::URLRequestContextGetter* | |
102 GetRequestContextForExtensions() OVERRIDE; | |
103 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 101 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
104 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 102 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
105 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; | 103 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
106 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 104 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
107 virtual base::Time GetStartTime() const OVERRIDE; | 105 virtual base::Time GetStartTime() const OVERRIDE; |
108 virtual net::URLRequestContextGetter* CreateRequestContext( | 106 virtual net::URLRequestContextGetter* CreateRequestContext( |
109 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 107 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
110 blob_protocol_handler, | 108 blob_protocol_handler, |
111 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 109 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
112 file_system_protocol_handler, | 110 file_system_protocol_handler, |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} | 282 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} |
285 | 283 |
286 Profile::Delegate* delegate_; | 284 Profile::Delegate* delegate_; |
287 | 285 |
288 chrome_browser_net::Predictor* predictor_; | 286 chrome_browser_net::Predictor* predictor_; |
289 | 287 |
290 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 288 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
291 }; | 289 }; |
292 | 290 |
293 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 291 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |