| Index: content/browser/renderer_host/p2p/socket_dispatcher_host.cc
|
| diff --git a/content/browser/renderer_host/p2p/socket_dispatcher_host.cc b/content/browser/renderer_host/p2p/socket_dispatcher_host.cc
|
| index f1249d51e891f0a93fcdde951fd6045ddf8e592f..cc037f0348e6469b7e5745e8374ce6de48cfe1d5 100644
|
| --- a/content/browser/renderer_host/p2p/socket_dispatcher_host.cc
|
| +++ b/content/browser/renderer_host/p2p/socket_dispatcher_host.cc
|
| @@ -221,13 +221,14 @@ void P2PSocketDispatcherHost::OnAcceptIncomingTcpConnection(
|
|
|
| void P2PSocketDispatcherHost::OnSend(int socket_id,
|
| const net::IPEndPoint& socket_address,
|
| - const std::vector<char>& data) {
|
| + const std::vector<char>& data,
|
| + net::DiffServCodePoint dscp) {
|
| P2PSocketHost* socket = LookupSocket(socket_id);
|
| if (!socket) {
|
| LOG(ERROR) << "Received P2PHostMsg_Send for invalid socket_id.";
|
| return;
|
| }
|
| - socket->Send(socket_address, data);
|
| + socket->Send(socket_address, data, dscp);
|
| }
|
|
|
| void P2PSocketDispatcherHost::OnDestroySocket(int socket_id) {
|
|
|