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

Side by Side Diff: base/prefs/pref_notifier_impl_unittest.cc

Issue 16797003: Make base use the proper Value namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwarnings fixed Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/callback.h" 6 #include "base/callback.h"
7 #include "base/prefs/mock_pref_change_callback.h" 7 #include "base/prefs/mock_pref_change_callback.h"
8 #include "base/prefs/pref_notifier_impl.h" 8 #include "base/prefs/pref_notifier_impl.h"
9 #include "base/prefs/pref_observer.h" 9 #include "base/prefs/pref_observer.h"
10 #include "base/prefs/pref_registry_simple.h" 10 #include "base/prefs/pref_registry_simple.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 76
77 class PrefObserverMock : public PrefObserver { 77 class PrefObserverMock : public PrefObserver {
78 public: 78 public:
79 PrefObserverMock() {} 79 PrefObserverMock() {}
80 virtual ~PrefObserverMock() {} 80 virtual ~PrefObserverMock() {}
81 81
82 MOCK_METHOD2(OnPreferenceChanged, void(PrefService*, const std::string&)); 82 MOCK_METHOD2(OnPreferenceChanged, void(PrefService*, const std::string&));
83 83
84 void Expect(PrefService* prefs, 84 void Expect(PrefService* prefs,
85 const std::string& pref_name, 85 const std::string& pref_name,
86 const Value* value) { 86 const base::Value* value) {
87 EXPECT_CALL(*this, OnPreferenceChanged(prefs, pref_name)) 87 EXPECT_CALL(*this, OnPreferenceChanged(prefs, pref_name))
88 .With(PrefValueMatches(prefs, pref_name, value)); 88 .With(PrefValueMatches(prefs, pref_name, value));
89 } 89 }
90 }; 90 };
91 91
92 // Test fixture class. 92 // Test fixture class.
93 class PrefNotifierTest : public testing::Test { 93 class PrefNotifierTest : public testing::Test {
94 protected: 94 protected:
95 virtual void SetUp() { 95 virtual void SetUp() {
96 pref_service_.registry()->RegisterBooleanPref(kChangedPref, true); 96 pref_service_.registry()->RegisterBooleanPref(kChangedPref, true);
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 EXPECT_CALL(obs2_, OnPreferenceChanged(&pref_service_, kChangedPref)); 218 EXPECT_CALL(obs2_, OnPreferenceChanged(&pref_service_, kChangedPref));
219 notifier.OnPreferenceChanged(kChangedPref); 219 notifier.OnPreferenceChanged(kChangedPref);
220 Mock::VerifyAndClearExpectations(&obs1_); 220 Mock::VerifyAndClearExpectations(&obs1_);
221 Mock::VerifyAndClearExpectations(&obs2_); 221 Mock::VerifyAndClearExpectations(&obs2_);
222 222
223 notifier.RemovePrefObserver(kChangedPref, &obs2_); 223 notifier.RemovePrefObserver(kChangedPref, &obs2_);
224 notifier.RemovePrefObserver(kUnchangedPref, &obs2_); 224 notifier.RemovePrefObserver(kUnchangedPref, &obs2_);
225 } 225 }
226 226
227 } // namespace 227 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698