| Index: content/common/gpu/client/context_provider_command_buffer.cc | 
| diff --git a/content/common/gpu/client/context_provider_command_buffer.cc b/content/common/gpu/client/context_provider_command_buffer.cc | 
| index 8c1fc34a854a880e129fa5ac3387e182ebac94aa..93f9f04ee8c01b9286b80b3e75ff9e52d180a53a 100644 | 
| --- a/content/common/gpu/client/context_provider_command_buffer.cc | 
| +++ b/content/common/gpu/client/context_provider_command_buffer.cc | 
| @@ -157,7 +157,7 @@ bool ContextProviderCommandBuffer::BindToCurrentThread() { | 
| task_runner = base::ThreadTaskRunnerHandle::Get(); | 
| command_buffer_ = gpu::CommandBufferProxyImpl::Create( | 
| std::move(channel_), surface_handle_, shared_command_buffer, stream_id_, | 
| -        stream_priority_, attributes_, active_url_, std::move(task_runner)); | 
| +        stream_priority_, attributes_, active_url_, task_runner); | 
| if (!command_buffer_) { | 
| DLOG(ERROR) << "GpuChannelHost failed to create command buffer."; | 
| command_buffer_metrics::UmaRecordContextInitFailed(context_type_); | 
| @@ -183,7 +183,7 @@ bool ContextProviderCommandBuffer::BindToCurrentThread() { | 
| gles2_helper_.get(), share_group, transfer_buffer_.get(), | 
| attributes_.bind_generates_resource, | 
| attributes_.lose_context_when_out_of_memory, support_client_side_arrays, | 
| -        command_buffer_.get())); | 
| +        command_buffer_.get(), std::move(task_runner))); | 
| if (!gles2_impl_->Initialize(memory_limits_.start_transfer_buffer_size, | 
| memory_limits_.min_transfer_buffer_size, | 
| memory_limits_.max_transfer_buffer_size, | 
|  |