| Index: ppapi/proxy/ppp_messaging_proxy.cc
|
| diff --git a/ppapi/proxy/ppp_messaging_proxy.cc b/ppapi/proxy/ppp_messaging_proxy.cc
|
| index 75614ae08b2266da602f448112e0bba83ac6e7b0..ffef4beada1e2347c34cb0d92e19c3792bd34e92 100644
|
| --- a/ppapi/proxy/ppp_messaging_proxy.cc
|
| +++ b/ppapi/proxy/ppp_messaging_proxy.cc
|
| @@ -120,7 +120,7 @@ void PPP_Messaging_Proxy::OnMsgHandleBlockingMessage(
|
| if (message_handler) {
|
| if (message_handler->LoopIsValid()) {
|
| message_handler->HandleBlockingMessage(
|
| - received_var, scoped_ptr<IPC::Message>(reply_msg));
|
| + received_var, std::unique_ptr<IPC::Message>(reply_msg));
|
| return;
|
| } else {
|
| // If the MessageHandler's loop has been quit, then we should treat it as
|
|
|