| Index: ui/gl/wgl_api_unittest.cc
|
| diff --git a/ui/gl/wgl_api_unittest.cc b/ui/gl/wgl_api_unittest.cc
|
| index 7672d90890847af0977caa0f43621abae05938f0..acaf572d2ae2ee0bb75c4650d522065f82b22cb6 100644
|
| --- a/ui/gl/wgl_api_unittest.cc
|
| +++ b/ui/gl/wgl_api_unittest.cc
|
| @@ -2,8 +2,9 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <memory>
|
| +
|
| #include "base/command_line.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "ui/gl/gl_implementation.h"
|
| #include "ui/gl/gl_surface_wgl.h"
|
| @@ -80,7 +81,7 @@ class WGLApiTest : public testing::Test {
|
| static const char* fake_ext_extension_string_;
|
| static const char* fake_arb_extension_string_;
|
|
|
| - scoped_ptr<RealWGLApi> api_;
|
| + std::unique_ptr<RealWGLApi> api_;
|
| };
|
|
|
| const char* WGLApiTest::fake_ext_extension_string_ = "";
|
|
|