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

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

Issue 14622003: components: Move PrefRegistrySyncable into user_prefs namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 8 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 0851814cf7c1cfb8a0d5628e9e591b1493fda525..129495a0b36bf50e556cb54c554df77de7c93904 100644
--- a/chrome/browser/profiles/gaia_info_update_service_factory.h
+++ b/chrome/browser/profiles/gaia_info_update_service_factory.h
@@ -9,9 +9,12 @@
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
class GAIAInfoUpdateService;
-class PrefRegistrySyncable;
class Profile;
+namespace user_prefs {
+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.
@@ -35,7 +38,8 @@ class GAIAInfoUpdateServiceFactory : public ProfileKeyedServiceFactory {
virtual ProfileKeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const OVERRIDE;
- virtual void RegisterUserPrefs(PrefRegistrySyncable* registry) OVERRIDE;
+ virtual void RegisterUserPrefs(
+ user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(GAIAInfoUpdateServiceFactory);
« no previous file with comments | « chrome/browser/profiles/chrome_version_service.cc ('k') | chrome/browser/profiles/gaia_info_update_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698