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

Unified Diff: chrome/browser/bookmarks/bookmark_prompt_prefs.h

Issue 12079097: Introduce PrefRegistrySyncable, simplifying PrefServiceSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add to PrefRegistrySyncable and PrefServiceSyncable to let sync know of pre-registered prefs. Created 7 years, 10 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/bookmarks/bookmark_prompt_prefs.h
diff --git a/chrome/browser/bookmarks/bookmark_prompt_prefs.h b/chrome/browser/bookmarks/bookmark_prompt_prefs.h
index f40ed90d599b881d2145d1be51733656f3a98c05..4c4b0d22ebba260ed02c5f71879e8d182c548f6c 100644
--- a/chrome/browser/bookmarks/bookmark_prompt_prefs.h
+++ b/chrome/browser/bookmarks/bookmark_prompt_prefs.h
@@ -7,7 +7,7 @@
#include "base/basictypes.h"
-class PrefServiceSyncable;
+class PrefRegistrySyncable;
class PrefServiceBase;
// Helper class for getting, changing bookmark prompt related preferences.
@@ -31,7 +31,7 @@ class BookmarkPromptPrefs {
bool IsBookmarkPromptEnabled() const;
// Registers user preferences used by bookmark prompt feature.
- static void RegisterUserPrefs(PrefServiceSyncable* prefs);
+ static void RegisterUserPrefs(PrefRegistrySyncable* registry);
private:
PrefServiceBase* prefs_; // Weak.

Powered by Google App Engine
This is Rietveld 408576698