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

Unified Diff: content/public/common/message_port_types.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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 | « content/public/common/media_stream_request.h ('k') | content/public/common/message_port_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/message_port_types.h
diff --git a/content/public/common/message_port_types.h b/content/public/common/message_port_types.h
index cf53d088dc49102189a60105fcd491f723626a2f..cfcce9f4797a4160cb8117c7602f713f3eb3a0e6 100644
--- a/content/public/common/message_port_types.h
+++ b/content/public/common/message_port_types.h
@@ -5,9 +5,9 @@
#ifndef CONTENT_PUBLIC_COMMON_MESSAGE_PORT_TYPES_H_
#define CONTENT_PUBLIC_COMMON_MESSAGE_PORT_TYPES_H_
+#include <memory>
#include <vector>
-#include "base/memory/scoped_ptr.h"
#include "base/strings/string16.h"
#include "base/values.h"
#include "content/common/content_export.h"
@@ -21,7 +21,7 @@ namespace content {
struct CONTENT_EXPORT MessagePortMessage {
MessagePortMessage();
explicit MessagePortMessage(const base::string16& message);
- explicit MessagePortMessage(scoped_ptr<base::Value> message);
+ explicit MessagePortMessage(std::unique_ptr<base::Value> message);
MessagePortMessage(const MessagePortMessage& other);
MessagePortMessage& operator=(const MessagePortMessage& other);
~MessagePortMessage();
« no previous file with comments | « content/public/common/media_stream_request.h ('k') | content/public/common/message_port_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698