Index: gpu/command_buffer/service/gpu_service_test.h |
diff --git a/gpu/command_buffer/service/gpu_service_test.h b/gpu/command_buffer/service/gpu_service_test.h |
index e547ff12fdab3bb3096c5696ebc20f351947cc8e..701eeb22f66c9f096e68d72955cbe40a7f0fde96 100644 |
--- a/gpu/command_buffer/service/gpu_service_test.h |
+++ b/gpu/command_buffer/service/gpu_service_test.h |
@@ -5,8 +5,9 @@ |
#ifndef GPU_COMMAND_BUFFER_SERVICE_GPU_SERVICE_TEST_H_ |
#define GPU_COMMAND_BUFFER_SERVICE_GPU_SERVICE_TEST_H_ |
+#include <memory> |
+ |
#include "base/memory/ref_counted.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/message_loop/message_loop.h" |
#include "testing/gmock/include/gmock/gmock.h" |
#include "testing/gtest/include/gtest/gtest.h" |
@@ -31,7 +32,7 @@ class GpuServiceTest : public testing::Test { |
void TearDown() override; |
gfx::GLContext* GetGLContext(); |
- scoped_ptr< ::testing::StrictMock< ::gfx::MockGLInterface> > gl_; |
+ std::unique_ptr<::testing::StrictMock<::gfx::MockGLInterface>> gl_; |
private: |
bool ran_setup_; |