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

Unified Diff: blimp/net/tcp_engine_transport.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.h ('k') | blimp/net/tcp_transport_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/tcp_engine_transport.cc
diff --git a/blimp/net/tcp_engine_transport.cc b/blimp/net/tcp_engine_transport.cc
index 9d18f1770b6e716af391af87d2d07564b9b11f89..894d6cc649d9bb1a2620535caaa5550abfb8e502 100644
--- a/blimp/net/tcp_engine_transport.cc
+++ b/blimp/net/tcp_engine_transport.cc
@@ -74,9 +74,10 @@ const char* TCPEngineTransport::GetName() const {
return "TCP";
}
-void TCPEngineTransport::GetLocalAddress(net::IPEndPoint* address) const {
+void TCPEngineTransport::GetAssignmentOptions(
+ AssignmentOptions* assignment_options) const {
DCHECK(server_socket_);
- server_socket_->GetLocalAddress(address);
+ server_socket_->GetLocalAddress(&assignment_options->engine_endpoint);
}
void TCPEngineTransport::OnTCPConnectAccepted(int result) {
« no previous file with comments | « blimp/net/tcp_engine_transport.h ('k') | blimp/net/tcp_transport_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698