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

Unified Diff: chrome/browser/net/spdyproxy/data_saving_metrics.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_saving_metrics.cc
diff --git a/chrome/browser/net/spdyproxy/data_saving_metrics.cc b/chrome/browser/net/spdyproxy/data_saving_metrics.cc
index 8deeb41efae636b1772642042918d5af0275f564..ffce30fd9a4f5d026324be1c767d51e8105e4c52 100644
--- a/chrome/browser/net/spdyproxy/data_saving_metrics.cc
+++ b/chrome/browser/net/spdyproxy/data_saving_metrics.cc
@@ -43,7 +43,8 @@ void AddInt64ToListPref(size_t index,
DCHECK(rv);
}
value += length;
- list_update->Set(index, Value::CreateStringValue(base::Int64ToString(value)));
+ list_update->Set(index,
+ base::Value::CreateStringValue(base::Int64ToString(value)));
}
int64 ListPrefInt64Value(const base::ListValue& list_update, size_t index) {

Powered by Google App Engine
This is Rietveld 408576698