Index: ppapi/proxy/ppapi_command_buffer_proxy.h |
diff --git a/ppapi/proxy/ppapi_command_buffer_proxy.h b/ppapi/proxy/ppapi_command_buffer_proxy.h |
index e0629bf4bb31076a3d93a53a5636f8c5b1d7612b..cbc73ffa6e340a62f628a8423303da063ae36664 100644 |
--- a/ppapi/proxy/ppapi_command_buffer_proxy.h |
+++ b/ppapi/proxy/ppapi_command_buffer_proxy.h |
@@ -8,10 +8,11 @@ |
#include <stddef.h> |
#include <stdint.h> |
+#include <memory> |
+ |
#include "base/callback.h" |
#include "base/containers/hash_tables.h" |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "gpu/command_buffer/client/gpu_control.h" |
#include "gpu/command_buffer/common/command_buffer.h" |
#include "gpu/command_buffer/common/command_buffer_id.h" |
@@ -94,7 +95,7 @@ class PPAPI_PROXY_EXPORT PpapiCommandBufferProxy : public gpu::CommandBuffer, |
gpu::Capabilities capabilities_; |
State last_state_; |
- scoped_ptr<base::SharedMemory> shared_state_shm_; |
+ std::unique_ptr<base::SharedMemory> shared_state_shm_; |
HostResource resource_; |
PluginDispatcher* dispatcher_; |