| Index: content/browser/renderer_host/compositor_impl_android.cc
|
| diff --git a/content/browser/renderer_host/compositor_impl_android.cc b/content/browser/renderer_host/compositor_impl_android.cc
|
| index 2aedd74644820bde8e48c672a815b43d9ef5912d..fb04a19fc5b1e59effe377f1dfea241d299a9f6f 100644
|
| --- a/content/browser/renderer_host/compositor_impl_android.cc
|
| +++ b/content/browser/renderer_host/compositor_impl_android.cc
|
| @@ -139,11 +139,11 @@ class OutputSurfaceWithoutParent : public cc::OutputSurface,
|
| public:
|
| OutputSurfaceWithoutParent(
|
| CompositorImpl* compositor,
|
| - const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
|
| + scoped_refptr<ContextProviderCommandBuffer> context_provider,
|
| const base::Callback<void(gpu::Capabilities)>&
|
| populate_gpu_capabilities_callback,
|
| std::unique_ptr<ExternalBeginFrameSource> begin_frame_source)
|
| - : cc::OutputSurface(context_provider),
|
| + : cc::OutputSurface(std::move(context_provider), nullptr, nullptr),
|
| compositor_(compositor),
|
| populate_gpu_capabilities_callback_(populate_gpu_capabilities_callback),
|
| swap_buffers_completion_callback_(
|
|
|