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

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

Issue 6598002: Make the ChromeNetworkDelegate use the ExtensionEventRouterForwarder (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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 virtual history::TopSites* GetTopSitesWithoutCreating(); 55 virtual history::TopSites* GetTopSitesWithoutCreating();
56 virtual VisitedLinkMaster* GetVisitedLinkMaster(); 56 virtual VisitedLinkMaster* GetVisitedLinkMaster();
57 virtual UserScriptMaster* GetUserScriptMaster(); 57 virtual UserScriptMaster* GetUserScriptMaster();
58 virtual SSLHostState* GetSSLHostState(); 58 virtual SSLHostState* GetSSLHostState();
59 virtual net::TransportSecurityState* GetTransportSecurityState(); 59 virtual net::TransportSecurityState* GetTransportSecurityState();
60 virtual ExtensionService* GetExtensionService(); 60 virtual ExtensionService* GetExtensionService();
61 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager(); 61 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager();
62 virtual ExtensionProcessManager* GetExtensionProcessManager(); 62 virtual ExtensionProcessManager* GetExtensionProcessManager();
63 virtual ExtensionMessageService* GetExtensionMessageService(); 63 virtual ExtensionMessageService* GetExtensionMessageService();
64 virtual ExtensionEventRouter* GetExtensionEventRouter(); 64 virtual ExtensionEventRouter* GetExtensionEventRouter();
65 virtual ExtensionIOEventRouter* GetExtensionIOEventRouter();
66 virtual FaviconService* GetFaviconService(ServiceAccessType sat); 65 virtual FaviconService* GetFaviconService(ServiceAccessType sat);
67 virtual HistoryService* GetHistoryService(ServiceAccessType sat); 66 virtual HistoryService* GetHistoryService(ServiceAccessType sat);
68 virtual HistoryService* GetHistoryServiceWithoutCreating(); 67 virtual HistoryService* GetHistoryServiceWithoutCreating();
69 virtual AutocompleteClassifier* GetAutocompleteClassifier(); 68 virtual AutocompleteClassifier* GetAutocompleteClassifier();
70 virtual WebDataService* GetWebDataService(ServiceAccessType sat); 69 virtual WebDataService* GetWebDataService(ServiceAccessType sat);
71 virtual WebDataService* GetWebDataServiceWithoutCreating(); 70 virtual WebDataService* GetWebDataServiceWithoutCreating();
72 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat); 71 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat);
73 virtual PrefService* GetPrefs(); 72 virtual PrefService* GetPrefs();
74 virtual PrefService* GetOffTheRecordPrefs(); 73 virtual PrefService* GetOffTheRecordPrefs();
75 virtual TemplateURLModel* GetTemplateURLModel(); 74 virtual TemplateURLModel* GetTemplateURLModel();
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 scoped_ptr<VisitedLinkMaster> visited_link_master_; 192 scoped_ptr<VisitedLinkMaster> visited_link_master_;
194 // Keep extension_prefs_ on top of extensions_service_ because the latter 193 // Keep extension_prefs_ on top of extensions_service_ because the latter
195 // maintains a pointer to the first and shall be destructed first. 194 // maintains a pointer to the first and shall be destructed first.
196 scoped_ptr<ExtensionPrefs> extension_prefs_; 195 scoped_ptr<ExtensionPrefs> extension_prefs_;
197 scoped_refptr<ExtensionService> extensions_service_; 196 scoped_refptr<ExtensionService> extensions_service_;
198 scoped_refptr<UserScriptMaster> user_script_master_; 197 scoped_refptr<UserScriptMaster> user_script_master_;
199 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; 198 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_;
200 scoped_ptr<ExtensionProcessManager> extension_process_manager_; 199 scoped_ptr<ExtensionProcessManager> extension_process_manager_;
201 scoped_refptr<ExtensionMessageService> extension_message_service_; 200 scoped_refptr<ExtensionMessageService> extension_message_service_;
202 scoped_ptr<ExtensionEventRouter> extension_event_router_; 201 scoped_ptr<ExtensionEventRouter> extension_event_router_;
203 scoped_refptr<ExtensionIOEventRouter> extension_io_event_router_;
204 scoped_ptr<SSLHostState> ssl_host_state_; 202 scoped_ptr<SSLHostState> ssl_host_state_;
205 scoped_refptr<net::TransportSecurityState> 203 scoped_refptr<net::TransportSecurityState>
206 transport_security_state_; 204 transport_security_state_;
207 scoped_refptr<TransportSecurityPersister> 205 scoped_refptr<TransportSecurityPersister>
208 transport_security_persister_; 206 transport_security_persister_;
209 scoped_ptr<policy::ProfilePolicyConnector> profile_policy_connector_; 207 scoped_ptr<policy::ProfilePolicyConnector> profile_policy_connector_;
210 scoped_ptr<NetPrefObserver> net_pref_observer_; 208 scoped_ptr<NetPrefObserver> net_pref_observer_;
211 scoped_ptr<TemplateURLFetcher> template_url_fetcher_; 209 scoped_ptr<TemplateURLFetcher> template_url_fetcher_;
212 scoped_ptr<TemplateURLModel> template_url_model_; 210 scoped_ptr<TemplateURLModel> template_url_model_;
213 scoped_ptr<BookmarkModel> bookmark_bar_model_; 211 scoped_ptr<BookmarkModel> bookmark_bar_model_;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 308 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
311 309
312 scoped_refptr<prerender::PrerenderManager> prerender_manager_; 310 scoped_refptr<prerender::PrerenderManager> prerender_manager_;
313 311
314 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 312 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
315 313
316 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 314 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
317 }; 315 };
318 316
319 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 317 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698