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

Unified Diff: chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest.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.cc
diff --git a/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest.cc b/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest.cc
index c4dd52b66793bea243664b02822440b00c285a9b..b63276866cfa8dd90fa4d69bed3704e47c8c2ab2 100644
--- a/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest.cc
+++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest.cc
@@ -83,8 +83,9 @@ void DataReductionProxySettingsTestBase::SetUp() {
ListPrefUpdate received_update(&pref_service_,
prefs::kDailyHttpReceivedContentLength);
for (int64 i = 0; i < spdyproxy::kNumDaysInHistory; i++) {
- original_update->Insert(0, new StringValue(base::Int64ToString(2 * i)));
- received_update->Insert(0, new StringValue(base::Int64ToString(i)));
+ original_update->Insert(0,
+ new base::StringValue(base::Int64ToString(2 * i)));
+ received_update->Insert(0, new base::StringValue(base::Int64ToString(i)));
}
last_update_time_ = base::Time::Now().LocalMidnight();
pref_service_.SetInt64(
@@ -154,7 +155,8 @@ DataReductionProxySettingsTestBase::SetProbeResult<
void DataReductionProxySettingsTestBase::CheckProxyPref(
const std::string& expected_servers,
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 server;
dict->GetString("mode", &mode);

Powered by Google App Engine
This is Rietveld 408576698