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

Unified Diff: trunk/src/content/browser/renderer_host/p2p/socket_host_tcp.h

Issue 197933002: Revert 256580 "This CL adds methods to manipulate RTP header ext..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 months 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
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);

Powered by Google App Engine
This is Rietveld 408576698