Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Unified Diff: content/test/content_test_suite.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/content_test_launcher.cc ('k') | content/test/dwrite_font_fake_sender_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/test/content_test_launcher.cc ('k') | content/test/dwrite_font_fake_sender_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698