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

Unified Diff: ppapi/proxy/resource_message_test_sink.cc

Issue 1864293002: Convert //ppapi to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more nullptr 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
« no previous file with comments | « ppapi/proxy/resource_message_test_sink.h ('k') | ppapi/proxy/serialized_var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/resource_message_test_sink.cc
diff --git a/ppapi/proxy/resource_message_test_sink.cc b/ppapi/proxy/resource_message_test_sink.cc
index 864f72c4f6f6eb939c6a0b301097a7489f2f5710..71bff599865055d7bd6e897d5a7e75ce70a1ab5c 100644
--- a/ppapi/proxy/resource_message_test_sink.cc
+++ b/ppapi/proxy/resource_message_test_sink.cc
@@ -48,7 +48,7 @@ ResourceMessageTestSink::~ResourceMessageTestSink() {
bool ResourceMessageTestSink::Send(IPC::Message* msg) {
int message_id = 0;
- scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer;
+ std::unique_ptr<IPC::MessageReplyDeserializer> reply_deserializer;
if (msg->is_sync()) {
reply_deserializer.reset(
static_cast<IPC::SyncMessage*>(msg)->GetReplyDeserializer());
« no previous file with comments | « ppapi/proxy/resource_message_test_sink.h ('k') | ppapi/proxy/serialized_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698