Index: content/renderer/pepper/host_resource_var.h |
diff --git a/content/renderer/pepper/host_resource_var.h b/content/renderer/pepper/host_resource_var.h |
index 607525eb4927d02276c75f3be1e4f53f1ce23480..b527696b4c609d814d4aa4a04df638dcff5f95fc 100644 |
--- a/content/renderer/pepper/host_resource_var.h |
+++ b/content/renderer/pepper/host_resource_var.h |
@@ -5,8 +5,9 @@ |
#ifndef CONTENT_RENDERER_PEPPER_HOST_RESOURCE_VAR_H_ |
#define CONTENT_RENDERER_PEPPER_HOST_RESOURCE_VAR_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "ipc/ipc_message.h" |
#include "ppapi/c/pp_resource.h" |
#include "ppapi/shared_impl/resource_var.h" |
@@ -57,7 +58,7 @@ class HostResourceVar : public ppapi::ResourceVar { |
// If the plugin-side resource has not yet been created, carries a message to |
// create a resource of the specific type on the plugin side. Otherwise, NULL. |
- scoped_ptr<IPC::Message> creation_message_; |
+ std::unique_ptr<IPC::Message> creation_message_; |
DISALLOW_COPY_AND_ASSIGN(HostResourceVar); |
}; |