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

Unified Diff: base/prefs/mock_pref_change_callback.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/mock_pref_change_callback.cc
diff --git a/base/prefs/mock_pref_change_callback.cc b/base/prefs/mock_pref_change_callback.cc
index 2285d8e366a5a1f8e351693146ae58b172c9bed1..96b71974eb6ffdf652571a1f722a3be6cddf96f1 100644
--- a/base/prefs/mock_pref_change_callback.cc
+++ b/base/prefs/mock_pref_change_callback.cc
@@ -18,7 +18,7 @@ PrefChangeRegistrar::NamedChangeCallback MockPrefChangeCallback::GetCallback() {
}
void MockPrefChangeCallback::Expect(const std::string& pref_name,
- const Value* value) {
+ const base::Value* value) {
EXPECT_CALL(*this, OnPreferenceChanged(pref_name))
.With(PrefValueMatches(prefs_, pref_name, value));
}

Powered by Google App Engine
This is Rietveld 408576698