| Index: gpu/ipc/client/command_buffer_proxy_impl.h
|
| diff --git a/gpu/ipc/client/command_buffer_proxy_impl.h b/gpu/ipc/client/command_buffer_proxy_impl.h
|
| index 89347bf2910c7b69352a0496afa0efbd98c8f1e5..453d7b790c506bed40a045bf75db93c895f2d77c 100644
|
| --- a/gpu/ipc/client/command_buffer_proxy_impl.h
|
| +++ b/gpu/ipc/client/command_buffer_proxy_impl.h
|
| @@ -9,6 +9,7 @@
|
| #include <stdint.h>
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <queue>
|
| #include <string>
|
|
|
| @@ -207,7 +208,7 @@ class GPU_EXPORT CommandBufferProxyImpl
|
| State last_state_;
|
|
|
| // The shared memory area used to update state.
|
| - scoped_ptr<base::SharedMemory> shared_state_shm_;
|
| + std::unique_ptr<base::SharedMemory> shared_state_shm_;
|
|
|
| // |*this| is owned by |*channel_| and so is always outlived by it, so using a
|
| // raw pointer is ok.
|
|
|