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

Unified Diff: chrome/test/chromedriver/net/net_util.cc

Issue 1879863002: Reland of [chromedriver] Listen on IPv6 on IPv6-only hosts (part 2). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better logging Created 4 years, 8 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/test/chromedriver/net/net_util.h ('k') | chrome/test/chromedriver/net/websocket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/net/net_util.cc
diff --git a/chrome/test/chromedriver/net/net_util.cc b/chrome/test/chromedriver/net/net_util.cc
index c47744e76718ff02028ee0bb29157c83cc9267d9..d8e5b2755ff9cdd8a0daa9e2a88b034cf941f81c 100644
--- a/chrome/test/chromedriver/net/net_util.cc
+++ b/chrome/test/chromedriver/net/net_util.cc
@@ -63,7 +63,7 @@ class SyncUrlFetcher : public net::URLFetcherDelegate {
NetAddress::NetAddress() : port_(-1) {}
-NetAddress::NetAddress(int port) : host_("127.0.0.1"), port_(port) {}
+NetAddress::NetAddress(int port) : host_("localhost"), port_(port) {}
NetAddress::NetAddress(const std::string& host, int port)
: host_(host), port_(port) {}
« no previous file with comments | « chrome/test/chromedriver/net/net_util.h ('k') | chrome/test/chromedriver/net/websocket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698