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

Unified Diff: content/shell/renderer/layout_test/layout_test_render_process_observer.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
Index: content/shell/renderer/layout_test/layout_test_render_process_observer.h
diff --git a/content/shell/renderer/layout_test/layout_test_render_process_observer.h b/content/shell/renderer/layout_test/layout_test_render_process_observer.h
index 278740965417d8db1e29d535c751a75e99cfc614..fee241b0dc22b5a36790eef5fdc95c8214902afd 100644
--- a/content/shell/renderer/layout_test/layout_test_render_process_observer.h
+++ b/content/shell/renderer/layout_test/layout_test_render_process_observer.h
@@ -5,10 +5,11 @@
#ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_PROCESS_OBSERVER_H_
#define CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_PROCESS_OBSERVER_H_
+#include <memory>
+
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "content/public/renderer/render_process_observer.h"
#include "ipc/ipc_platform_file.h"
@@ -55,7 +56,7 @@ class LayoutTestRenderProcessObserver : public RenderProcessObserver {
BlinkTestRunner* main_test_runner_;
test_runner::WebTestDelegate* test_delegate_;
- scoped_ptr<test_runner::WebTestInterfaces> test_interfaces_;
+ std::unique_ptr<test_runner::WebTestInterfaces> test_interfaces_;
base::FilePath webkit_source_dir_;

Powered by Google App Engine
This is Rietveld 408576698