| Index: content/test/content_test_suite.h
|
| diff --git a/content/test/content_test_suite.h b/content/test/content_test_suite.h
|
| index cb3703381fa1042ce57714af4d8b6e42d76bffa0..989153f1c5a481353967fe8538f4b45ee5893a4b 100644
|
| --- a/content/test/content_test_suite.h
|
| +++ b/content/test/content_test_suite.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CONTENT_TEST_CONTENT_TEST_SUITE_H_
|
| #define CONTENT_TEST_CONTENT_TEST_SUITE_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "build/build_config.h"
|
| #include "content/public/test/content_test_suite_base.h"
|
|
|
| @@ -36,7 +37,7 @@ class ContentTestSuite : public ContentTestSuiteBase {
|
| base::win::ScopedCOMInitializer com_initializer_;
|
| #endif
|
| #if defined(USE_OZONE)
|
| - scoped_ptr<ui::ClientNativePixmapFactory> client_native_pixmap_factory_;
|
| + std::unique_ptr<ui::ClientNativePixmapFactory> client_native_pixmap_factory_;
|
| #endif
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ContentTestSuite);
|
|
|