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

Unified Diff: chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest_android.cc

Issue 104493005: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 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
Index: chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest_android.cc
diff --git a/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest_android.cc b/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest_android.cc
index 6471205bb0bd07da2cfe3013c5b6359a1cd460e4..bc40bf1393a792ce5e3828695be2f4a08c1b8f52 100644
--- a/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest_android.cc
+++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest_android.cc
@@ -42,7 +42,8 @@ class DataReductionProxySettingsAndroidTest
void CheckProxyPacPref(const std::string& expected_pac_url,
const std::string& expected_mode) {
- const DictionaryValue* dict = pref_service_.GetDictionary(prefs::kProxy);
+ const base::DictionaryValue* dict =
+ pref_service_.GetDictionary(prefs::kProxy);
std::string mode;
std::string pac_url;
dict->GetString("mode", &mode);

Powered by Google App Engine
This is Rietveld 408576698