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 51b4e0929e44420125aed1faba9062a95cc54334..93a735cb89f7e7a6baf85f78d20970696913b828 100644 |
--- a/content/common/gpu/gpu_channel_manager.cc |
+++ b/content/common/gpu/gpu_channel_manager.cc |
@@ -14,6 +14,7 @@ |
#include "base/thread_task_runner_handle.h" |
#include "build/build_config.h" |
#include "content/common/gpu/gpu_channel.h" |
+#include "content/common/gpu/gpu_channel_manager_delegate.h" |
#include "content/common/gpu/gpu_memory_buffer_factory.h" |
#include "content/common/gpu/gpu_memory_manager.h" |
#include "content/common/gpu/gpu_messages.h" |
@@ -44,6 +45,7 @@ const int kMaxKeepAliveTimeMs = 200; |
} |
GpuChannelManager::GpuChannelManager( |
+ GpuChannelManagerDelegate* delegate, |
IPC::SyncChannel* channel, |
GpuWatchdog* watchdog, |
base::SingleThreadTaskRunner* task_runner, |
@@ -53,6 +55,7 @@ GpuChannelManager::GpuChannelManager( |
GpuMemoryBufferFactory* gpu_memory_buffer_factory) |
: task_runner_(task_runner), |
io_task_runner_(io_task_runner), |
+ delegate_(delegate), |
channel_(channel), |
watchdog_(watchdog), |
shutdown_event_(shutdown_event), |