| 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 ac1ddd9219326f0ae2eceff0af7560bd0f3a72ea..fded95d06d682b20e3f1056cebb48224d9ef74aa 100644
|
| --- a/content/browser/renderer_host/compositor_impl_android.cc
|
| +++ b/content/browser/renderer_host/compositor_impl_android.cc
|
| @@ -571,10 +571,9 @@ void CompositorImpl::CreateOutputSurface() {
|
|
|
| scoped_refptr<ContextProviderCommandBuffer> context_provider(
|
| new ContextProviderCommandBuffer(
|
| - base::WrapUnique(new WebGraphicsContext3DCommandBufferImpl(
|
| - surface_handle_, url, gpu_channel_host.get(),
|
| - gfx::PreferIntegratedGpu, automatic_flushes)),
|
| - limits, attributes, nullptr,
|
| + std::move(gpu_channel_host), surface_handle_, url,
|
| + gfx::PreferIntegratedGpu, automatic_flushes, limits, attributes,
|
| + nullptr,
|
| command_buffer_metrics::DISPLAY_COMPOSITOR_ONSCREEN_CONTEXT));
|
| DCHECK(context_provider.get());
|
|
|
|
|