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

Unified Diff: content/browser/android/in_process/synchronous_compositor_factory_impl.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/browser/android/in_process/synchronous_compositor_factory_impl.h
diff --git a/content/browser/android/in_process/synchronous_compositor_factory_impl.h b/content/browser/android/in_process/synchronous_compositor_factory_impl.h
index 4842e85f30e530c990956d00433db71f7c67187f..372c617b499b29f48b5aa82d2c13f7ad649ce650 100644
--- a/content/browser/android/in_process/synchronous_compositor_factory_impl.h
+++ b/content/browser/android/in_process/synchronous_compositor_factory_impl.h
@@ -39,7 +39,7 @@ class SynchronousCompositorFactoryImpl : public SynchronousCompositorFactory {
// SynchronousCompositorFactory
scoped_refptr<base::SingleThreadTaskRunner> GetCompositorTaskRunner()
override;
- scoped_ptr<cc::OutputSurface> CreateOutputSurface(
+ std::unique_ptr<cc::OutputSurface> CreateOutputSurface(
int routing_id,
uint32_t output_surface_id,
const scoped_refptr<FrameSwapMessageQueue>& frame_swap_message_queue,
@@ -48,7 +48,7 @@ class SynchronousCompositorFactoryImpl : public SynchronousCompositorFactory {
InputHandlerManagerClient* GetInputHandlerManagerClient() override;
SynchronousInputHandlerProxyClient* GetSynchronousInputHandlerProxyClient()
override;
- scoped_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource(
+ std::unique_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource(
int routing_id) override;
SynchronousInputEventFilter* synchronous_input_event_filter() {

Powered by Google App Engine
This is Rietveld 408576698