| Index: content/common/gpu/gpu_channel_manager.cc
|
| diff --git a/content/common/gpu/gpu_channel_manager.cc b/content/common/gpu/gpu_channel_manager.cc
|
| index 299fbe20ff413cfd4760fae80a07b509851f77f4..b9bddfe8b8e054033dd596193b9d2fe96b8819c5 100644
|
| --- a/content/common/gpu/gpu_channel_manager.cc
|
| +++ b/content/common/gpu/gpu_channel_manager.cc
|
| @@ -42,6 +42,7 @@ const int kMaxKeepAliveTimeMs = 200;
|
|
|
| GpuChannelManager::GpuChannelManager(
|
| const gpu::GpuPreferences& gpu_preferences,
|
| + const gpu::GpuDriverBugWorkarounds& gpu_driver_bug_workarounds,
|
| GpuChannelManagerDelegate* delegate,
|
| GpuWatchdog* watchdog,
|
| base::SingleThreadTaskRunner* task_runner,
|
| @@ -52,6 +53,7 @@ GpuChannelManager::GpuChannelManager(
|
| : task_runner_(task_runner),
|
| io_task_runner_(io_task_runner),
|
| gpu_preferences_(gpu_preferences),
|
| + gpu_driver_bug_workarounds_(gpu_driver_bug_workarounds),
|
| delegate_(delegate),
|
| watchdog_(watchdog),
|
| shutdown_event_(shutdown_event),
|
|
|