| Index: content/browser/renderer_host/pepper_message_filter.cc
|
| diff --git a/content/browser/renderer_host/pepper_message_filter.cc b/content/browser/renderer_host/pepper_message_filter.cc
|
| index f17f73c4dbcc022a0233c82d7437a49df0a1c280..596cbca844ebdfb69481a220e11ab30f41e0de91 100644
|
| --- a/content/browser/renderer_host/pepper_message_filter.cc
|
| +++ b/content/browser/renderer_host/pepper_message_filter.cc
|
| @@ -638,13 +638,14 @@ void PepperMessageFilter::DoTCPServerListen(bool allowed,
|
| socket->Listen(addr, backlog);
|
| }
|
|
|
| -void PepperMessageFilter::OnTCPServerAccept(uint32 real_socket_id) {
|
| +void PepperMessageFilter::OnTCPServerAccept(int32 tcp_client_sockets_routing_id,
|
| + uint32 real_socket_id) {
|
| TCPServerSocketMap::iterator iter = tcp_server_sockets_.find(real_socket_id);
|
| if (iter == tcp_server_sockets_.end()) {
|
| NOTREACHED();
|
| return;
|
| }
|
| - iter->second->Accept();
|
| + iter->second->Accept(tcp_client_sockets_routing_id);
|
| }
|
|
|
| void PepperMessageFilter::GetFontFamiliesComplete(
|
|
|