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

Unified Diff: net/quic/quic_end_to_end_unittest.cc

Issue 1565303002: Change IPEndpoint::address() to return a net::IPAddress (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android Created 4 years, 11 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
Index: net/quic/quic_end_to_end_unittest.cc
diff --git a/net/quic/quic_end_to_end_unittest.cc b/net/quic/quic_end_to_end_unittest.cc
index a37895bcef1ebee60f9fd05dac777946fee0c2b8..b5a2f05987e093a33dd188ef8a592ce10a203a1e 100644
--- a/net/quic/quic_end_to_end_unittest.cc
+++ b/net/quic/quic_end_to_end_unittest.cc
@@ -163,7 +163,7 @@ class QuicEndToEndTest : public PlatformTest {
strike_register_no_startup_period_));
server_thread_->Initialize();
server_address_ =
- IPEndPoint(server_address_.address(), server_thread_->GetPort());
+ IPEndPoint(server_address_.address_number(), server_thread_->GetPort());
server_thread_->Start();
server_started_ = true;
}

Powered by Google App Engine
This is Rietveld 408576698