| Index: content/renderer/p2p/socket_client.h
|
| diff --git a/content/renderer/p2p/socket_client.h b/content/renderer/p2p/socket_client.h
|
| index fbdca2771089b8f951db2b2f5772619428390097..e15d813509756ae33d45790c063bcd6f7430804f 100644
|
| --- a/content/renderer/p2p/socket_client.h
|
| +++ b/content/renderer/p2p/socket_client.h
|
| @@ -55,6 +55,12 @@ class P2PSocketClient : public base::RefCountedThreadSafe<P2PSocketClient> {
|
| // Send the |data| to the |address|.
|
| void Send(const net::IPEndPoint& address, const std::vector<char>& data);
|
|
|
| + // Send the |data| to the |address| using Differentiated Services Code Point
|
| + // |dscp|.
|
| + void SendWithDscp(const net::IPEndPoint& address,
|
| + const std::vector<char>& data,
|
| + net::DiffServCodePoint dscp);
|
| +
|
| // Must be called before the socket is destroyed. The delegate may
|
| // not be called after |closed_task| is executed.
|
| void Close();
|
|
|