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

Unified Diff: chrome/browser/prefs/pref_notifier_impl_unittest.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/prefs/pref_model_associator.cc ('k') | chrome/browser/prefs/pref_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prefs/pref_notifier_impl_unittest.cc
diff --git a/chrome/browser/prefs/pref_notifier_impl_unittest.cc b/chrome/browser/prefs/pref_notifier_impl_unittest.cc
index 7570aef44e640c2562d4f126b6558be030435fe2..3d3057ca67c9810e7b2dd45ec8d0d44f5d76e837 100644
--- a/chrome/browser/prefs/pref_notifier_impl_unittest.cc
+++ b/chrome/browser/prefs/pref_notifier_impl_unittest.cc
@@ -94,14 +94,12 @@ class PrefNotifierTest : public testing::Test {
protected:
virtual void SetUp() {
pref_service_.RegisterBooleanPref(kChangedPref,
- true,
- PrefService::UNSYNCABLE_PREF);
+ true);
pref_service_.RegisterBooleanPref(kUnchangedPref,
- true,
- PrefService::UNSYNCABLE_PREF);
+ true);
}
- TestingPrefService pref_service_;
+ TestingPrefServiceSimple pref_service_;
PrefObserverMock obs1_;
PrefObserverMock obs2_;
« no previous file with comments | « chrome/browser/prefs/pref_model_associator.cc ('k') | chrome/browser/prefs/pref_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698