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

Unified Diff: base/prefs/mock_pref_change_callback.h

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.h
diff --git a/base/prefs/mock_pref_change_callback.h b/base/prefs/mock_pref_change_callback.h
index 0c2e3fa4d99235c66186f40c19e6f4f21eb7a8b8..422754afd6ee9e7cf7abf6bf3ebc964ab81c9fd9 100644
--- a/base/prefs/mock_pref_change_callback.h
+++ b/base/prefs/mock_pref_change_callback.h
@@ -24,7 +24,7 @@ MATCHER_P3(PrefValueMatches, prefs, pref_name, value, "") {
if (!pref)
return false;
- const Value* actual_value = pref->GetValue();
+ const base::Value* actual_value = pref->GetValue();
if (!actual_value)
return value == NULL;
if (!value)
@@ -43,7 +43,7 @@ class MockPrefChangeCallback {
MOCK_METHOD1(OnPreferenceChanged, void(const std::string&));
void Expect(const std::string& pref_name,
- const Value* value);
+ const base::Value* value);
private:
PrefService* prefs_;

Powered by Google App Engine
This is Rietveld 408576698