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

Unified Diff: chrome/browser/chromeos/customization_document.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
Index: chrome/browser/chromeos/customization_document.cc
diff --git a/chrome/browser/chromeos/customization_document.cc b/chrome/browser/chromeos/customization_document.cc
index 932ec75268e9270ab0a5bf1fe4e7a99c62a1666f..6230b791ede2215ef784fd28c869feeacd0fe62b 100644
--- a/chrome/browser/chromeos/customization_document.cc
+++ b/chrome/browser/chromeos/customization_document.cc
@@ -248,9 +248,9 @@ ServicesCustomizationDocument* ServicesCustomizationDocument::GetInstance() {
}
// static
-void ServicesCustomizationDocument::RegisterPrefs(PrefService* local_state) {
- local_state->RegisterBooleanPref(kServicesCustomizationAppliedPref, false,
- PrefService::UNSYNCABLE_PREF);
+void ServicesCustomizationDocument::RegisterPrefs(
+ PrefServiceSimple* local_state) {
+ local_state->RegisterBooleanPref(kServicesCustomizationAppliedPref, false);
}
// static
« no previous file with comments | « chrome/browser/chromeos/customization_document.h ('k') | chrome/browser/chromeos/display/display_preferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698