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

Unified Diff: ppapi/proxy/ppp_messaging_proxy.cc

Issue 1864293002: Convert //ppapi to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: 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

Powered by Google App Engine
This is Rietveld 408576698