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

Unified Diff: content/test/test_render_view_host.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_view_host.h ('k') | content/test/test_render_view_host_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_render_view_host.cc
diff --git a/content/test/test_render_view_host.cc b/content/test/test_render_view_host.cc
index cce3414cb2f6fdc9bf8a03806718bdbbd8dff291..f459aa3b682a11b5d3b9b4d471b405b8f8c3bc19 100644
--- a/content/test/test_render_view_host.cc
+++ b/content/test/test_render_view_host.cc
@@ -4,7 +4,8 @@
#include "content/test/test_render_view_host.h"
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "content/browser/dom_storage/dom_storage_context_wrapper.h"
@@ -188,7 +189,7 @@ gfx::Rect TestRenderWidgetHostView::GetBoundsInRootWindow() {
void TestRenderWidgetHostView::OnSwapCompositorFrame(
uint32_t output_surface_id,
- scoped_ptr<cc::CompositorFrame> frame) {
+ std::unique_ptr<cc::CompositorFrame> frame) {
did_swap_compositor_frame_ = true;
}
@@ -199,11 +200,12 @@ bool TestRenderWidgetHostView::LockMouse() {
void TestRenderWidgetHostView::UnlockMouse() {
}
-TestRenderViewHost::TestRenderViewHost(SiteInstance* instance,
- scoped_ptr<RenderWidgetHostImpl> widget,
- RenderViewHostDelegate* delegate,
- int32_t main_frame_routing_id,
- bool swapped_out)
+TestRenderViewHost::TestRenderViewHost(
+ SiteInstance* instance,
+ std::unique_ptr<RenderWidgetHostImpl> widget,
+ RenderViewHostDelegate* delegate,
+ int32_t main_frame_routing_id,
+ bool swapped_out)
: RenderViewHostImpl(instance,
std::move(widget),
delegate,
« no previous file with comments | « content/test/test_render_view_host.h ('k') | content/test/test_render_view_host_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698