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

Unified Diff: chrome/browser/signin/about_signin_internals_factory.h

Issue 11570009: Split PrefService into PrefService, PrefServiceSimple and PrefServiceSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments, use pure builder pattern. Created 8 years 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/signin/about_signin_internals_factory.h
diff --git a/chrome/browser/signin/about_signin_internals_factory.h b/chrome/browser/signin/about_signin_internals_factory.h
index 83cf51deb1a8a3aded571d56b8bbe332858157cb..66cc69b16453de8dc9474d5b7a1da0b4ac939925 100644
--- a/chrome/browser/signin/about_signin_internals_factory.h
+++ b/chrome/browser/signin/about_signin_internals_factory.h
@@ -9,6 +9,7 @@
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
class AboutSigninInternals;
+class PrefServiceSyncable;
class Profile;
// Singleton that owns all AboutSigninInternals and associates them with
@@ -23,7 +24,7 @@ class AboutSigninInternalsFactory : public ProfileKeyedServiceFactory {
static AboutSigninInternalsFactory* GetInstance();
// Implementation of ProfileKeyedServiceFactory.
- virtual void RegisterUserPrefs(PrefService* user_prefs) OVERRIDE;
+ virtual void RegisterUserPrefs(PrefServiceSyncable* user_prefs) OVERRIDE;
private:
friend struct DefaultSingletonTraits<AboutSigninInternalsFactory>;

Powered by Google App Engine
This is Rietveld 408576698