| Index: trunk/src/content/browser/renderer_host/p2p/socket_host_tcp.h
|
| ===================================================================
|
| --- trunk/src/content/browser/renderer_host/p2p/socket_host_tcp.h (revision 256583)
|
| +++ trunk/src/content/browser/renderer_host/p2p/socket_host_tcp.h (working copy)
|
| @@ -52,8 +52,7 @@
|
| // Derived classes will provide the implementation.
|
| virtual int ProcessInput(char* input, int input_len) = 0;
|
| virtual void DoSend(const net::IPEndPoint& to,
|
| - const std::vector<char>& data,
|
| - const talk_base::PacketOptions& options) = 0;
|
| + const std::vector<char>& data) = 0;
|
|
|
| void WriteOrQueue(scoped_refptr<net::DrainableIOBuffer>& buffer);
|
| void OnPacket(const std::vector<char>& data);
|
| @@ -109,8 +108,7 @@
|
| protected:
|
| virtual int ProcessInput(char* input, int input_len) OVERRIDE;
|
| virtual void DoSend(const net::IPEndPoint& to,
|
| - const std::vector<char>& data,
|
| - const talk_base::PacketOptions& options) OVERRIDE;
|
| + const std::vector<char>& data) OVERRIDE;
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(P2PSocketHostTcp);
|
| };
|
| @@ -131,8 +129,7 @@
|
| protected:
|
| virtual int ProcessInput(char* input, int input_len) OVERRIDE;
|
| virtual void DoSend(const net::IPEndPoint& to,
|
| - const std::vector<char>& data,
|
| - const talk_base::PacketOptions& options) OVERRIDE;
|
| + const std::vector<char>& data) OVERRIDE;
|
| private:
|
| int GetExpectedPacketSize(const char* data, int len, int* pad_bytes);
|
|
|
|
|