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

Unified Diff: content/test/test_render_view_host.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/test_render_frame_host_factory.cc ('k') | content/test/test_render_view_host.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.h
diff --git a/content/test/test_render_view_host.h b/content/test/test_render_view_host.h
index 831773bb7103f2fb0928c27421fdc2455b5e8fbd..571b872d0e03cc5b77e4219bd238bbcdf18b9066 100644
--- a/content/test/test_render_view_host.h
+++ b/content/test/test_render_view_host.h
@@ -88,8 +88,9 @@ class TestRenderWidgetHostView : public RenderWidgetHostViewBase {
bool IsSpeaking() const override;
void StopSpeaking() override;
#endif // defined(OS_MACOSX)
- void OnSwapCompositorFrame(uint32_t output_surface_id,
- scoped_ptr<cc::CompositorFrame> frame) override;
+ void OnSwapCompositorFrame(
+ uint32_t output_surface_id,
+ std::unique_ptr<cc::CompositorFrame> frame) override;
void ClearCompositorFrame() override {}
// RenderWidgetHostViewBase implementation.
@@ -189,7 +190,7 @@ class TestRenderViewHost
public RenderViewHostTester {
public:
TestRenderViewHost(SiteInstance* instance,
- scoped_ptr<RenderWidgetHostImpl> widget,
+ std::unique_ptr<RenderWidgetHostImpl> widget,
RenderViewHostDelegate* delegate,
int32_t main_frame_routing_id,
bool swapped_out);
@@ -304,7 +305,7 @@ class RenderViewHostImplTestHarness : public RenderViewHostTestHarness {
TestRenderFrameHost* main_test_rfh();
private:
- typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors>
+ typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors>
ScopedSetSupportedScaleFactors;
ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_;
DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness);
« no previous file with comments | « content/test/test_render_frame_host_factory.cc ('k') | content/test/test_render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698