diff options
Diffstat (limited to 'jingle/glue/pseudotcp_adapter.h')
-rw-r--r-- | jingle/glue/pseudotcp_adapter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jingle/glue/pseudotcp_adapter.h b/jingle/glue/pseudotcp_adapter.h index 0001991..35df8ce 100644 --- a/jingle/glue/pseudotcp_adapter.h +++ b/jingle/glue/pseudotcp_adapter.h @@ -12,12 +12,12 @@ #include "base/timer.h" #include "base/threading/non_thread_safe.h" #include "net/base/net_log.h" -#include "net/socket/client_socket.h" +#include "net/socket/stream_socket.h" #include "third_party/libjingle/source/talk/p2p/base/pseudotcp.h" namespace jingle_glue { -class PseudoTcpAdapter : public net::ClientSocket, +class PseudoTcpAdapter : public net::StreamSocket, public cricket::IPseudoTcpNotify, public base::NonThreadSafe { public: @@ -34,7 +34,7 @@ class PseudoTcpAdapter : public net::ClientSocket, virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; virtual bool SetSendBufferSize(int32 size) OVERRIDE; - // net::ClientSocket implementation. + // net::StreamSocket implementation. virtual int Connect(net::CompletionCallback* callback) OVERRIDE; virtual void Disconnect() OVERRIDE; virtual bool IsConnected() const OVERRIDE; |