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

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: 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 134
135 #if defined(OS_CHROMEOS) 135 #if defined(OS_CHROMEOS)
136 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia); 136 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia);
137 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); 137 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl();
138 virtual void SetupChromeOSEnterpriseExtensionObserver(); 138 virtual void SetupChromeOSEnterpriseExtensionObserver();
139 #endif // defined(OS_CHROMEOS) 139 #endif // defined(OS_CHROMEOS)
140 140
141 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); 141 virtual PrefProxyConfigTracker* GetProxyConfigTracker();
142 virtual PrerenderManager* GetPrerenderManager(); 142 virtual PrerenderManager* GetPrerenderManager();
143 143
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; 195 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_;
196 scoped_ptr<ExtensionProcessManager> extension_process_manager_; 196 scoped_ptr<ExtensionProcessManager> extension_process_manager_;
197 scoped_refptr<ExtensionMessageService> extension_message_service_; 197 scoped_refptr<ExtensionMessageService> extension_message_service_;
198 scoped_ptr<ExtensionEventRouter> extension_event_router_; 198 scoped_ptr<ExtensionEventRouter> extension_event_router_;
199 scoped_refptr<ExtensionIOEventRouter> extension_io_event_router_; 199 scoped_refptr<ExtensionIOEventRouter> extension_io_event_router_;
200 scoped_ptr<SSLHostState> ssl_host_state_; 200 scoped_ptr<SSLHostState> ssl_host_state_;
201 scoped_refptr<net::TransportSecurityState> 201 scoped_refptr<net::TransportSecurityState>
202 transport_security_state_; 202 transport_security_state_;
203 scoped_refptr<TransportSecurityPersister> 203 scoped_refptr<TransportSecurityPersister>
204 transport_security_persister_; 204 transport_security_persister_;
205 scoped_ptr<policy::ProfilePolicyContext> profile_policy_context_; 205 scoped_ptr<policy::ProfilePolicyConnector> profile_policy_connector_;
206 scoped_ptr<NetPrefObserver> net_pref_observer_; 206 scoped_ptr<NetPrefObserver> net_pref_observer_;
207 scoped_ptr<TemplateURLFetcher> template_url_fetcher_; 207 scoped_ptr<TemplateURLFetcher> template_url_fetcher_;
208 scoped_ptr<TemplateURLModel> template_url_model_; 208 scoped_ptr<TemplateURLModel> template_url_model_;
209 scoped_ptr<BookmarkModel> bookmark_bar_model_; 209 scoped_ptr<BookmarkModel> bookmark_bar_model_;
210 scoped_refptr<WebResourceService> web_resource_service_; 210 scoped_refptr<WebResourceService> web_resource_service_;
211 scoped_ptr<NTPResourceCache> ntp_resource_cache_; 211 scoped_ptr<NTPResourceCache> ntp_resource_cache_;
212 212
213 scoped_ptr<TokenService> token_service_; 213 scoped_ptr<TokenService> token_service_;
214 scoped_ptr<ProfileSyncFactory> profile_sync_factory_; 214 scoped_ptr<ProfileSyncFactory> profile_sync_factory_;
215 scoped_ptr<ProfileSyncService> sync_service_; 215 scoped_ptr<ProfileSyncService> sync_service_;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 #endif 303 #endif
304 304
305 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 305 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
306 306
307 scoped_refptr<PrerenderManager> prerender_manager_; 307 scoped_refptr<PrerenderManager> prerender_manager_;
308 308
309 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 309 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
310 }; 310 };
311 311
312 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 312 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698