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

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

Issue 10696208: Move ExtensionEventRouter and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed bug + latest master Created 8 years, 5 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
« no previous file with comments | « chrome/browser/profiles/profile.h ('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) 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 virtual Profile* GetOffTheRecordProfile() OVERRIDE; 73 virtual Profile* GetOffTheRecordProfile() OVERRIDE;
74 virtual void DestroyOffTheRecordProfile() OVERRIDE; 74 virtual void DestroyOffTheRecordProfile() OVERRIDE;
75 virtual bool HasOffTheRecordProfile() OVERRIDE; 75 virtual bool HasOffTheRecordProfile() OVERRIDE;
76 virtual Profile* GetOriginalProfile() OVERRIDE; 76 virtual Profile* GetOriginalProfile() OVERRIDE;
77 virtual history::TopSites* GetTopSites() OVERRIDE; 77 virtual history::TopSites* GetTopSites() OVERRIDE;
78 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; 78 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE;
79 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; 79 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE;
80 virtual ExtensionService* GetExtensionService() OVERRIDE; 80 virtual ExtensionService* GetExtensionService() OVERRIDE;
81 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; 81 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE;
82 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; 82 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE;
83 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; 83 virtual extensions::EventRouter* GetExtensionEventRouter() OVERRIDE;
84 virtual ExtensionSpecialStoragePolicy* 84 virtual ExtensionSpecialStoragePolicy*
85 GetExtensionSpecialStoragePolicy() OVERRIDE; 85 GetExtensionSpecialStoragePolicy() OVERRIDE;
86 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; 86 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE;
87 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; 87 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE;
88 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; 88 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE;
89 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; 89 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE;
90 virtual policy::PolicyService* GetPolicyService() OVERRIDE; 90 virtual policy::PolicyService* GetPolicyService() OVERRIDE;
91 virtual PrefService* GetPrefs() OVERRIDE; 91 virtual PrefService* GetPrefs() OVERRIDE;
92 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; 92 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE;
93 virtual net::URLRequestContextGetter* 93 virtual net::URLRequestContextGetter*
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 Profile::Delegate* delegate_; 254 Profile::Delegate* delegate_;
255 255
256 chrome_browser_net::Predictor* predictor_; 256 chrome_browser_net::Predictor* predictor_;
257 257
258 bool session_restore_enabled_; 258 bool session_restore_enabled_;
259 259
260 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 260 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
261 }; 261 };
262 262
263 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 263 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698