| Index: blimp/net/tcp_client_transport.h
|
| diff --git a/blimp/net/tcp_client_transport.h b/blimp/net/tcp_client_transport.h
|
| index d1444c51fbd5ddd4fa8aee06f1371fb223da7b90..aa8f049ef96e67f21465d855defa5b9c170b3f27 100644
|
| --- a/blimp/net/tcp_client_transport.h
|
| +++ b/blimp/net/tcp_client_transport.h
|
| @@ -23,7 +23,7 @@ class StreamSocket;
|
|
|
| namespace blimp {
|
|
|
| -class BlimpConnection;
|
| +class MessagePort;
|
|
|
| // BlimpTransport which creates a TCP connection to one of the specified
|
| // |addresses| on each call to Connect().
|
| @@ -37,7 +37,7 @@ class BLIMP_NET_EXPORT TCPClientTransport : public BlimpTransport {
|
|
|
| // BlimpTransport implementation.
|
| void Connect(const net::CompletionCallback& callback) override;
|
| - std::unique_ptr<BlimpConnection> TakeConnection() override;
|
| + std::unique_ptr<MessagePort> TakeMessagePort() override;
|
| const char* GetName() const override;
|
|
|
| protected:
|
|
|