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

Unified Diff: chrome/browser/net/referrer.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_unittest.cc ('k') | chrome/browser/policy/cloud_policy_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/referrer.cc
diff --git a/chrome/browser/net/referrer.cc b/chrome/browser/net/referrer.cc
index f7bad0e600acbebee7c83bd393de2acb93fb2564..a2c75392d13d81d31ad3626d538426fcead74e66 100644
--- a/chrome/browser/net/referrer.cc
+++ b/chrome/browser/net/referrer.cc
@@ -145,10 +145,10 @@ void Referrer::Deserialize(const Value& value) {
}
Value* Referrer::Serialize() const {
- ListValue* subresource_list(new ListValue);
+ base::ListValue* subresource_list(new base::ListValue);
for (const_iterator it = begin(); it != end(); ++it) {
- StringValue* url_spec(new StringValue(it->first.spec()));
- FundamentalValue* rate(new FundamentalValue(
+ base::StringValue* url_spec(new base::StringValue(it->first.spec()));
+ base::FundamentalValue* rate(new base::FundamentalValue(
it->second.subresource_use_rate()));
subresource_list->Append(url_spec);
« no previous file with comments | « chrome/browser/net/predictor_unittest.cc ('k') | chrome/browser/policy/cloud_policy_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698