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

Unified Diff: remoting/protocol/message_serialization.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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 | « remoting/protocol/message_reader_unittest.cc ('k') | remoting/protocol/monitored_video_stub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/message_serialization.h
diff --git a/remoting/protocol/message_serialization.h b/remoting/protocol/message_serialization.h
index 2a035ff5101e57870d0e448813ef766b136b0029..cebc5aafb8fae33471b013700726013f84e59fb7 100644
--- a/remoting/protocol/message_serialization.h
+++ b/remoting/protocol/message_serialization.h
@@ -21,8 +21,8 @@ namespace remoting {
namespace protocol {
template <class T>
-scoped_ptr<T> ParseMessage(CompoundBuffer* buffer) {
- scoped_ptr<T> message(new T());
+std::unique_ptr<T> ParseMessage(CompoundBuffer* buffer) {
+ std::unique_ptr<T> message(new T());
CompoundBufferInputStream stream(buffer);
if (!message->ParseFromZeroCopyStream(&stream)) {
LOG(WARNING) << "Received message that is not a valid protocol buffer.";
« no previous file with comments | « remoting/protocol/message_reader_unittest.cc ('k') | remoting/protocol/monitored_video_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698