Index: blimp/net/blimp_transport.h |
diff --git a/blimp/net/blimp_transport.h b/blimp/net/blimp_transport.h |
index 5d06632b2e9af0d5bc18c62f8af78c167922c177..d66a382baac7fe08321fd7a75291e9e0a00ee854 100644 |
--- a/blimp/net/blimp_transport.h |
+++ b/blimp/net/blimp_transport.h |
@@ -13,7 +13,6 @@ |
namespace blimp { |
class BlimpConnection; |
-class MessagePort; |
// An interface which encapsulates the transport-specific code for |
// establishing network connections between the client and engine. |
@@ -31,8 +30,9 @@ class BlimpTransport { |
// All other values indicate a connection error. |
virtual void Connect(const net::CompletionCallback& callback) = 0; |
- // Returns the MessagePort of a successfully established connection. |
- virtual std::unique_ptr<MessagePort> TakeMessagePort() = 0; |
+ // Creates a new |BlimpConnection| for the specific |BlimpTransport| |
+ // implementation. |
+ virtual std::unique_ptr<BlimpConnection> MakeConnection() = 0; |
// Gets the transport name, e.g. "TCP", "SSL", "mock", etc. |
virtual const char* GetName() const = 0; |