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

Unified Diff: chrome/browser/profiles/gaia_info_update_service_factory.h

Issue 15517005: Remove references to Profile from browser_context_keyed_service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & style Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/profiles/gaia_info_update_service_factory.h
diff --git a/chrome/browser/profiles/gaia_info_update_service_factory.h b/chrome/browser/profiles/gaia_info_update_service_factory.h
index e7df4d79a1898ada1ded0b95076344c8af69febb..3ee9bd608114994de79a93f666bac51ec67e1a8c 100644
--- a/chrome/browser/profiles/gaia_info_update_service_factory.h
+++ b/chrome/browser/profiles/gaia_info_update_service_factory.h
@@ -18,7 +18,7 @@ class PrefRegistrySyncable;
// Singleton that owns all GAIAInfoUpdateServices and associates them with
// Profiles. Listens for the Profile's destruction notification and cleans up
// the associated GAIAInfoUpdateService.
-class GAIAInfoUpdateServiceFactory : public ProfileKeyedServiceFactory {
+class GAIAInfoUpdateServiceFactory : public BrowserContextKeyedServiceFactory {
public:
// Returns the instance of GAIAInfoUpdateService associated with this profile
// (creating one if none exists). Returns NULL if this profile cannot have a
@@ -34,8 +34,8 @@ class GAIAInfoUpdateServiceFactory : public ProfileKeyedServiceFactory {
GAIAInfoUpdateServiceFactory();
virtual ~GAIAInfoUpdateServiceFactory();
- // ProfileKeyedServiceFactory:
- virtual ProfileKeyedService* BuildServiceInstanceFor(
+ // BrowserContextKeyedServiceFactory:
+ virtual BrowserContextKeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const OVERRIDE;
virtual void RegisterUserPrefs(

Powered by Google App Engine
This is Rietveld 408576698