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

Unified Diff: chrome/browser/ui/browser_ui_prefs.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/ui/browser_ui_prefs.h
diff --git a/chrome/browser/ui/browser_ui_prefs.h b/chrome/browser/ui/browser_ui_prefs.h
index 92e44ae0ff25565f6bbde0342fccc6c845e916a5..6cef1262fde9e79871dc4f80c5a40c371e659cf8 100644
--- a/chrome/browser/ui/browser_ui_prefs.h
+++ b/chrome/browser/ui/browser_ui_prefs.h
@@ -7,13 +7,14 @@
#include <string>
-class PrefService;
+class PrefServiceSimple;
+class PrefServiceSyncable;
class Profile;
namespace chrome {
-void RegisterBrowserPrefs(PrefService* prefs);
-void RegisterBrowserUserPrefs(PrefService* prefs);
+void RegisterBrowserPrefs(PrefServiceSimple* prefs);
+void RegisterBrowserUserPrefs(PrefServiceSyncable* prefs);
// Create a preference dictionary for the provided application name, in the
// given user profile. This is done only once per application name / per

Powered by Google App Engine
This is Rietveld 408576698