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

Unified Diff: chrome/browser/net/predictor_unittest.cc

Issue 7619006: base: Remove using declaration of FundamentalValue as it's no longer necessary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
« no previous file with comments | « chrome/browser/net/predictor_api.cc ('k') | chrome/browser/net/referrer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/predictor_unittest.cc
diff --git a/chrome/browser/net/predictor_unittest.cc b/chrome/browser/net/predictor_unittest.cc
index 47cffdde69a15121dceccc0672e1942af79ab0ba..58aab262c79eb192c8f2b2bf34e28d726568e1df 100644
--- a/chrome/browser/net/predictor_unittest.cc
+++ b/chrome/browser/net/predictor_unittest.cc
@@ -282,8 +282,9 @@ static ListValue* FindSerializationMotivation(
// Create a new empty serialization list.
static ListValue* NewEmptySerializationList() {
- ListValue* list = new ListValue;
- list->Append(new FundamentalValue(Predictor::PREDICTOR_REFERRER_VERSION));
+ base::ListValue* list = new base::ListValue;
+ list->Append(
+ new base::FundamentalValue(Predictor::PREDICTOR_REFERRER_VERSION));
return list;
}
@@ -316,8 +317,8 @@ static void AddToSerializedList(const GURL& motivation,
// case, during deserialization, the latency value we supply plus the
// existing value(s) will be added to the referrer.
- subresource_list->Append(new StringValue(subresource.spec()));
- subresource_list->Append(new FundamentalValue(use_rate));
+ subresource_list->Append(new base::StringValue(subresource.spec()));
+ subresource_list->Append(new base::FundamentalValue(use_rate));
}
static const int kLatencyNotFound = -1;
« no previous file with comments | « chrome/browser/net/predictor_api.cc ('k') | chrome/browser/net/referrer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698