| Index: content/common/gpu/gpu_channel.cc
|
| diff --git a/content/common/gpu/gpu_channel.cc b/content/common/gpu/gpu_channel.cc
|
| index b7231b4c9610fab8e6f02f6375a6c696918d260e..cc35c9c6ff94a321fd8da91db9c4ebde72c4bae0 100644
|
| --- a/content/common/gpu/gpu_channel.cc
|
| +++ b/content/common/gpu/gpu_channel.cc
|
| @@ -644,6 +644,7 @@ void GpuChannel::CreateViewCommandBuffer(
|
| surface_id,
|
| watchdog_,
|
| software_,
|
| + init_params.use_virtual_gl_context,
|
| init_params.active_url));
|
| if (preempted_flag_.get())
|
| stub->SetPreemptByFlag(preempted_flag_);
|
| @@ -858,8 +859,10 @@ void GpuChannel::OnCreateOffscreenCommandBuffer(
|
| init_params.attribs,
|
| init_params.gpu_preference,
|
| *route_id,
|
| - 0, watchdog_,
|
| + 0,
|
| + watchdog_,
|
| software_,
|
| + init_params.use_virtual_gl_context,
|
| init_params.active_url));
|
| if (preempted_flag_.get())
|
| stub->SetPreemptByFlag(preempted_flag_);
|
|
|