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

Unified Diff: net/base/address_list_net_log_param.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo 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 | « ipc/ipc_message_utils.cc ('k') | net/base/transport_security_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/address_list_net_log_param.cc
diff --git a/net/base/address_list_net_log_param.cc b/net/base/address_list_net_log_param.cc
index 72332ef27d3cd64754681c78fd432d89193c6e6c..f2aa05da086258233a1b1dc97353f31389139051 100644
--- a/net/base/address_list_net_log_param.cc
+++ b/net/base/address_list_net_log_param.cc
@@ -20,7 +20,7 @@ Value* AddressListNetLogParam::ToValue() const {
for (const addrinfo* head = address_list_.head();
head != NULL ; head = head->ai_next) {
- list->Append(Value::CreateStringValue(NetAddressToStringWithPort(head)));
+ list->Append(base::StringValue::New(NetAddressToStringWithPort(head)));
}
dict->Set("address_list", list);
« no previous file with comments | « ipc/ipc_message_utils.cc ('k') | net/base/transport_security_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698