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

Unified Diff: content/test/test_render_frame_host_factory.cc

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/test_render_frame_host_factory.h ('k') | content/test/test_render_view_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_render_frame_host_factory.cc
diff --git a/content/test/test_render_frame_host_factory.cc b/content/test/test_render_frame_host_factory.cc
index e0fed0dd198e819b8120f3dbf0cb5d94c48d41e7..3c732ceab58f76ac767aa94a58a930bdc28d7bf4 100644
--- a/content/test/test_render_frame_host_factory.cc
+++ b/content/test/test_render_frame_host_factory.cc
@@ -6,6 +6,7 @@
#include "base/compiler_specific.h"
#include "base/logging.h"
+#include "base/memory/ptr_util.h"
#include "content/test/test_render_frame_host.h"
namespace content {
@@ -18,7 +19,7 @@ TestRenderFrameHostFactory::~TestRenderFrameHostFactory() {
RenderFrameHostFactory::UnregisterFactory();
}
-scoped_ptr<RenderFrameHostImpl>
+std::unique_ptr<RenderFrameHostImpl>
TestRenderFrameHostFactory::CreateRenderFrameHost(
SiteInstance* site_instance,
RenderViewHostImpl* render_view_host,
@@ -29,7 +30,7 @@ TestRenderFrameHostFactory::CreateRenderFrameHost(
int32_t routing_id,
int32_t widget_routing_id,
bool hidden) {
- return make_scoped_ptr(new TestRenderFrameHost(
+ return base::WrapUnique(new TestRenderFrameHost(
site_instance, render_view_host, delegate, rwh_delegate, frame_tree,
frame_tree_node, routing_id, widget_routing_id, hidden));
}
« no previous file with comments | « content/test/test_render_frame_host_factory.h ('k') | content/test/test_render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698