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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: base/prefs/pref_notifier_impl_unittest.cc
diff --git a/base/prefs/pref_notifier_impl_unittest.cc b/base/prefs/pref_notifier_impl_unittest.cc
index 6b66c374bcc1c88241a64412241cf5bc1e6a6300..29ea322e7ed7c0d56862cd0ce2597f17b1cc4f7f 100644
--- a/base/prefs/pref_notifier_impl_unittest.cc
+++ b/base/prefs/pref_notifier_impl_unittest.cc
@@ -83,7 +83,7 @@ class PrefObserverMock : public PrefObserver {
void Expect(PrefService* prefs,
const std::string& pref_name,
- const Value* value) {
+ const base::Value* value) {
EXPECT_CALL(*this, OnPreferenceChanged(prefs, pref_name))
.With(PrefValueMatches(prefs, pref_name, value));
}

Powered by Google App Engine
This is Rietveld 408576698