Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(898)

Side by Side Diff: chrome/browser/profiles/profile_impl.h

Issue 6520008: Device policy infrastructure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 9 #pragma once
10 10
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 virtual ProfileSyncService* GetProfileSyncService( 123 virtual ProfileSyncService* GetProfileSyncService(
124 const std::string& cros_user); 124 const std::string& cros_user);
125 virtual TokenService* GetTokenService(); 125 virtual TokenService* GetTokenService();
126 void InitSyncService(const std::string& cros_user); 126 void InitSyncService(const std::string& cros_user);
127 virtual CloudPrintProxyService* GetCloudPrintProxyService(); 127 virtual CloudPrintProxyService* GetCloudPrintProxyService();
128 void InitCloudPrintProxyService(); 128 void InitCloudPrintProxyService();
129 virtual ChromeBlobStorageContext* GetBlobStorageContext(); 129 virtual ChromeBlobStorageContext* GetBlobStorageContext();
130 virtual ExtensionInfoMap* GetExtensionInfoMap(); 130 virtual ExtensionInfoMap* GetExtensionInfoMap();
131 virtual PromoCounter* GetInstantPromoCounter(); 131 virtual PromoCounter* GetInstantPromoCounter();
132 virtual BrowserSignin* GetBrowserSignin(); 132 virtual BrowserSignin* GetBrowserSignin();
133 virtual policy::ProfilePolicyContext* GetPolicyContext(); 133 virtual policy::ProfilePolicyConnector* GetPolicyConnector();
134 virtual ChromeURLDataManager* GetChromeURLDataManager(); 134 virtual ChromeURLDataManager* GetChromeURLDataManager();
135 135
136 #if defined(OS_CHROMEOS) 136 #if defined(OS_CHROMEOS)
137 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia); 137 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia);
138 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); 138 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl();
139 virtual void SetupChromeOSEnterpriseExtensionObserver(); 139 virtual void SetupChromeOSEnterpriseExtensionObserver();
140 virtual void InitChromeOSPreferences(); 140 virtual void InitChromeOSPreferences();
141 #endif // defined(OS_CHROMEOS) 141 #endif // defined(OS_CHROMEOS)
142 142
143 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); 143 virtual PrefProxyConfigTracker* GetProxyConfigTracker();
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; 197 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_;
198 scoped_ptr<ExtensionProcessManager> extension_process_manager_; 198 scoped_ptr<ExtensionProcessManager> extension_process_manager_;
199 scoped_refptr<ExtensionMessageService> extension_message_service_; 199 scoped_refptr<ExtensionMessageService> extension_message_service_;
200 scoped_ptr<ExtensionEventRouter> extension_event_router_; 200 scoped_ptr<ExtensionEventRouter> extension_event_router_;
201 scoped_refptr<ExtensionIOEventRouter> extension_io_event_router_; 201 scoped_refptr<ExtensionIOEventRouter> extension_io_event_router_;
202 scoped_ptr<SSLHostState> ssl_host_state_; 202 scoped_ptr<SSLHostState> ssl_host_state_;
203 scoped_refptr<net::TransportSecurityState> 203 scoped_refptr<net::TransportSecurityState>
204 transport_security_state_; 204 transport_security_state_;
205 scoped_refptr<TransportSecurityPersister> 205 scoped_refptr<TransportSecurityPersister>
206 transport_security_persister_; 206 transport_security_persister_;
207 scoped_ptr<policy::ProfilePolicyContext> profile_policy_context_; 207 scoped_ptr<policy::ProfilePolicyConnector> profile_policy_connector_;
208 scoped_ptr<NetPrefObserver> net_pref_observer_; 208 scoped_ptr<NetPrefObserver> net_pref_observer_;
209 scoped_ptr<TemplateURLFetcher> template_url_fetcher_; 209 scoped_ptr<TemplateURLFetcher> template_url_fetcher_;
210 scoped_ptr<TemplateURLModel> template_url_model_; 210 scoped_ptr<TemplateURLModel> template_url_model_;
211 scoped_ptr<BookmarkModel> bookmark_bar_model_; 211 scoped_ptr<BookmarkModel> bookmark_bar_model_;
212 scoped_refptr<PromoResourceService> promo_resource_service_; 212 scoped_refptr<PromoResourceService> promo_resource_service_;
213 scoped_ptr<NTPResourceCache> ntp_resource_cache_; 213 scoped_ptr<NTPResourceCache> ntp_resource_cache_;
214 214
215 scoped_ptr<TokenService> token_service_; 215 scoped_ptr<TokenService> token_service_;
216 scoped_ptr<ProfileSyncFactory> profile_sync_factory_; 216 scoped_ptr<ProfileSyncFactory> profile_sync_factory_;
217 scoped_ptr<ProfileSyncService> sync_service_; 217 scoped_ptr<ProfileSyncService> sync_service_;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 307 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
308 308
309 scoped_refptr<prerender::PrerenderManager> prerender_manager_; 309 scoped_refptr<prerender::PrerenderManager> prerender_manager_;
310 310
311 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 311 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
312 312
313 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 313 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
314 }; 314 };
315 315
316 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 316 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698