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

Unified Diff: chrome/browser/ui/tabs/pinned_tab_codec.cc

Issue 11570009: Split PrefService into PrefService, PrefServiceSimple and PrefServiceSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head again, previous had unrelated broken win_rel test. 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
« no previous file with comments | « chrome/browser/ui/tabs/pinned_tab_codec.h ('k') | chrome/browser/ui/tabs/tab_strip_layout_type_prefs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/tabs/pinned_tab_codec.cc
diff --git a/chrome/browser/ui/tabs/pinned_tab_codec.cc b/chrome/browser/ui/tabs/pinned_tab_codec.cc
index 3fe52f3f5d2655d7bda1f1d51679092defabd9e4..68059100d090dc58e63825e507b2d5c2ca117fd9 100644
--- a/chrome/browser/ui/tabs/pinned_tab_codec.cc
+++ b/chrome/browser/ui/tabs/pinned_tab_codec.cc
@@ -97,8 +97,9 @@ static bool DecodeTab(const DictionaryValue& value, StartupTab* tab) {
}
// static
-void PinnedTabCodec::RegisterUserPrefs(PrefService* prefs) {
- prefs->RegisterListPref(prefs::kPinnedTabs, PrefService::UNSYNCABLE_PREF);
+void PinnedTabCodec::RegisterUserPrefs(PrefServiceSyncable* prefs) {
+ prefs->RegisterListPref(prefs::kPinnedTabs,
+ PrefServiceSyncable::UNSYNCABLE_PREF);
}
// static
« no previous file with comments | « chrome/browser/ui/tabs/pinned_tab_codec.h ('k') | chrome/browser/ui/tabs/tab_strip_layout_type_prefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698