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

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

Issue 7966005: Move TransportSecurityPersister completely to IO thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 9 years, 3 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
« no previous file with comments | « chrome/browser/profiles/profile.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 virtual void DestroyOffTheRecordProfile(); 51 virtual void DestroyOffTheRecordProfile();
52 virtual bool HasOffTheRecordProfile(); 52 virtual bool HasOffTheRecordProfile();
53 virtual Profile* GetOriginalProfile(); 53 virtual Profile* GetOriginalProfile();
54 virtual ChromeAppCacheService* GetAppCacheService(); 54 virtual ChromeAppCacheService* GetAppCacheService();
55 virtual webkit_database::DatabaseTracker* GetDatabaseTracker(); 55 virtual webkit_database::DatabaseTracker* GetDatabaseTracker();
56 virtual history::TopSites* GetTopSites(); 56 virtual history::TopSites* GetTopSites();
57 virtual history::TopSites* GetTopSitesWithoutCreating(); 57 virtual history::TopSites* GetTopSitesWithoutCreating();
58 virtual VisitedLinkMaster* GetVisitedLinkMaster(); 58 virtual VisitedLinkMaster* GetVisitedLinkMaster();
59 virtual UserScriptMaster* GetUserScriptMaster(); 59 virtual UserScriptMaster* GetUserScriptMaster();
60 virtual SSLHostState* GetSSLHostState(); 60 virtual SSLHostState* GetSSLHostState();
61 virtual net::TransportSecurityState* GetTransportSecurityState();
62 virtual ExtensionService* GetExtensionService(); 61 virtual ExtensionService* GetExtensionService();
63 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager(); 62 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager();
64 virtual ExtensionProcessManager* GetExtensionProcessManager(); 63 virtual ExtensionProcessManager* GetExtensionProcessManager();
65 virtual ExtensionMessageService* GetExtensionMessageService(); 64 virtual ExtensionMessageService* GetExtensionMessageService();
66 virtual ExtensionEventRouter* GetExtensionEventRouter(); 65 virtual ExtensionEventRouter* GetExtensionEventRouter();
67 virtual ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy(); 66 virtual ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy();
68 virtual FaviconService* GetFaviconService(ServiceAccessType sat); 67 virtual FaviconService* GetFaviconService(ServiceAccessType sat);
69 virtual HistoryService* GetHistoryService(ServiceAccessType sat); 68 virtual HistoryService* GetHistoryService(ServiceAccessType sat);
70 virtual HistoryService* GetHistoryServiceWithoutCreating(); 69 virtual HistoryService* GetHistoryServiceWithoutCreating();
71 virtual AutocompleteClassifier* GetAutocompleteClassifier(); 70 virtual AutocompleteClassifier* GetAutocompleteClassifier();
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 virtual ProfileSyncService* GetProfileSyncService(); 116 virtual ProfileSyncService* GetProfileSyncService();
118 virtual ProfileSyncService* GetProfileSyncService( 117 virtual ProfileSyncService* GetProfileSyncService(
119 const std::string& cros_user); 118 const std::string& cros_user);
120 virtual TokenService* GetTokenService(); 119 virtual TokenService* GetTokenService();
121 void InitSyncService(const std::string& cros_user); 120 void InitSyncService(const std::string& cros_user);
122 virtual ChromeBlobStorageContext* GetBlobStorageContext(); 121 virtual ChromeBlobStorageContext* GetBlobStorageContext();
123 virtual ExtensionInfoMap* GetExtensionInfoMap(); 122 virtual ExtensionInfoMap* GetExtensionInfoMap();
124 virtual PromoCounter* GetInstantPromoCounter(); 123 virtual PromoCounter* GetInstantPromoCounter();
125 virtual ChromeURLDataManager* GetChromeURLDataManager(); 124 virtual ChromeURLDataManager* GetChromeURLDataManager();
126 virtual chrome_browser_net::Predictor* GetNetworkPredictor(); 125 virtual chrome_browser_net::Predictor* GetNetworkPredictor();
126 virtual void DeleteTransportSecurityStateSince(base::Time time);
127 127
128 #if defined(OS_CHROMEOS) 128 #if defined(OS_CHROMEOS)
129 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia); 129 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia);
130 virtual void OnLogin(); 130 virtual void OnLogin();
131 virtual void SetupChromeOSEnterpriseExtensionObserver(); 131 virtual void SetupChromeOSEnterpriseExtensionObserver();
132 virtual void InitChromeOSPreferences(); 132 virtual void InitChromeOSPreferences();
133 #endif // defined(OS_CHROMEOS) 133 #endif // defined(OS_CHROMEOS)
134 134
135 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); 135 virtual PrefProxyConfigTracker* GetProxyConfigTracker();
136 virtual prerender::PrerenderManager* GetPrerenderManager(); 136 virtual prerender::PrerenderManager* GetPrerenderManager();
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 scoped_ptr<ExtensionService> extension_service_; 202 scoped_ptr<ExtensionService> extension_service_;
203 scoped_refptr<UserScriptMaster> user_script_master_; 203 scoped_refptr<UserScriptMaster> user_script_master_;
204 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; 204 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_;
205 scoped_ptr<ExtensionProcessManager> extension_process_manager_; 205 scoped_ptr<ExtensionProcessManager> extension_process_manager_;
206 scoped_refptr<ExtensionMessageService> extension_message_service_; 206 scoped_refptr<ExtensionMessageService> extension_message_service_;
207 scoped_ptr<ExtensionEventRouter> extension_event_router_; 207 scoped_ptr<ExtensionEventRouter> extension_event_router_;
208 scoped_ptr<ExtensionNavigationObserver> extension_navigation_observer_; 208 scoped_ptr<ExtensionNavigationObserver> extension_navigation_observer_;
209 scoped_refptr<ExtensionSpecialStoragePolicy> 209 scoped_refptr<ExtensionSpecialStoragePolicy>
210 extension_special_storage_policy_; 210 extension_special_storage_policy_;
211 scoped_ptr<SSLHostState> ssl_host_state_; 211 scoped_ptr<SSLHostState> ssl_host_state_;
212 scoped_refptr<net::TransportSecurityState>
213 transport_security_state_;
214 scoped_refptr<TransportSecurityPersister>
215 transport_security_persister_;
216 scoped_ptr<prerender::PrerenderManager> prerender_manager_; 212 scoped_ptr<prerender::PrerenderManager> prerender_manager_;
217 scoped_ptr<NetPrefObserver> net_pref_observer_; 213 scoped_ptr<NetPrefObserver> net_pref_observer_;
218 scoped_ptr<TemplateURLFetcher> template_url_fetcher_; 214 scoped_ptr<TemplateURLFetcher> template_url_fetcher_;
219 scoped_ptr<BookmarkModel> bookmark_bar_model_; 215 scoped_ptr<BookmarkModel> bookmark_bar_model_;
220 scoped_refptr<PromoResourceService> promo_resource_service_; 216 scoped_refptr<PromoResourceService> promo_resource_service_;
221 scoped_refptr<ProtocolHandlerRegistry> protocol_handler_registry_; 217 scoped_refptr<ProtocolHandlerRegistry> protocol_handler_registry_;
222 218
223 scoped_ptr<TokenService> token_service_; 219 scoped_ptr<TokenService> token_service_;
224 scoped_ptr<ProfileSyncFactory> profile_sync_factory_; 220 scoped_ptr<ProfileSyncFactory> profile_sync_factory_;
225 scoped_ptr<ProfileSyncService> sync_service_; 221 scoped_ptr<ProfileSyncService> sync_service_;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 293 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
298 294
299 Profile::Delegate* delegate_; 295 Profile::Delegate* delegate_;
300 296
301 chrome_browser_net::Predictor* predictor_; 297 chrome_browser_net::Predictor* predictor_;
302 298
303 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 299 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
304 }; 300 };
305 301
306 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 302 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698