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

Unified Diff: blimp/net/tcp_transport_unittest.cc

Issue 2462183002: GRPC Stream implementation of HeliumStream
Patch Set: Address gcasto comments Created 4 years, 1 month 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 | « blimp/net/tcp_engine_transport.cc ('k') | blimp/net/test_common.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/tcp_transport_unittest.cc
diff --git a/blimp/net/tcp_transport_unittest.cc b/blimp/net/tcp_transport_unittest.cc
index 0a80efefd0ac88074d05a63c36304a917b7ed4e9..06c029c5fffac9a451aa54c7231ea35541ad576d 100644
--- a/blimp/net/tcp_transport_unittest.cc
+++ b/blimp/net/tcp_transport_unittest.cc
@@ -43,9 +43,9 @@ class TCPTransportTest : public testing::Test {
}
net::IPEndPoint GetLocalEndpoint() const {
- net::IPEndPoint local_address;
- engine_.GetLocalAddress(&local_address);
- return local_address;
+ AssignmentOptions assignment_options;
+ engine_.GetAssignmentOptions(&assignment_options);
+ return assignment_options.engine_endpoint;
}
std::string payload_1_ = "foo";
« no previous file with comments | « blimp/net/tcp_engine_transport.cc ('k') | blimp/net/test_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698