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

Unified Diff: blimp/net/tcp_engine_transport.h

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/grpc_stream_unittest.cc ('k') | blimp/net/tcp_engine_transport.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/tcp_engine_transport.h
diff --git a/blimp/net/tcp_engine_transport.h b/blimp/net/tcp_engine_transport.h
index b7e85e06b83ec98e60d4439e80dd710370d0c846..4ef00f4b83533c9efc86349e535eb5579d930268 100644
--- a/blimp/net/tcp_engine_transport.h
+++ b/blimp/net/tcp_engine_transport.h
@@ -9,6 +9,7 @@
#include "base/callback.h"
#include "base/macros.h"
+#include "blimp/common/public/session/assignment_options.h"
#include "blimp/net/blimp_engine_transport.h"
#include "blimp/net/blimp_net_export.h"
#include "net/base/ip_endpoint.h"
@@ -28,15 +29,15 @@ class MessagePort;
class BLIMP_NET_EXPORT TCPEngineTransport : public BlimpEngineTransport {
public:
// Caller retains the ownership of |net_log|.
- TCPEngineTransport(const net::IPEndPoint& address,
- net::NetLog* net_log);
+ TCPEngineTransport(const net::IPEndPoint& address, net::NetLog* net_log);
~TCPEngineTransport() override;
// BlimpTransport implementation.
void Connect(const net::CompletionCallback& callback) override;
std::unique_ptr<BlimpConnection> MakeConnection() override;
const char* GetName() const override;
- void GetLocalAddress(net::IPEndPoint* address) const override;
+ void GetAssignmentOptions(
+ AssignmentOptions* assignment_options) const override;
// Internal use only except tests.
std::unique_ptr<MessagePort> TakeMessagePort();
« no previous file with comments | « blimp/net/grpc_stream_unittest.cc ('k') | blimp/net/tcp_engine_transport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698