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

Unified Diff: net/base/net_util.cc

Issue 15662008: Make net and ipc explicitly use the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | « net/base/net_log.cc ('k') | net/cert/crl_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_util.cc
diff --git a/net/base/net_util.cc b/net/base/net_util.cc
index 75c6358c2ee812f393e0bac61ce1412e33465e82..f4844f792909cfaa384958f11e029d469413037f 100644
--- a/net/base/net_util.cc
+++ b/net/base/net_util.cc
@@ -1939,7 +1939,7 @@ IPv6SupportResult::IPv6SupportResult(bool ipv6_supported,
base::Value* IPv6SupportResult::ToNetLogValue(
NetLog::LogLevel /* log_level */) const {
- base::DictionaryValue* dict = new DictionaryValue();
+ base::DictionaryValue* dict = new base::DictionaryValue();
dict->SetBoolean("ipv6_supported", ipv6_supported);
dict->SetString("ipv6_support_status",
kFinalStatusNames[ipv6_support_status]);
« no previous file with comments | « net/base/net_log.cc ('k') | net/cert/crl_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698