| Index: content/common/gpu/gpu_channel_manager.h
|
| diff --git a/content/common/gpu/gpu_channel_manager.h b/content/common/gpu/gpu_channel_manager.h
|
| index a15a8adbb784bbb121f0d59643c847675a2a04e1..7116fda096ba6a3788334579091a7317a8cb5362 100644
|
| --- a/content/common/gpu/gpu_channel_manager.h
|
| +++ b/content/common/gpu/gpu_channel_manager.h
|
| @@ -13,6 +13,7 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| +#include "base/message_loop/message_loop_proxy.h"
|
| #include "build/build_config.h"
|
| #include "content/common/content_export.h"
|
| #include "content/common/content_param_traits.h"
|
| @@ -64,7 +65,7 @@
|
| public:
|
| GpuChannelManager(MessageRouter* router,
|
| GpuWatchdog* watchdog,
|
| - base::SingleThreadTaskRunner* io_task_runner,
|
| + base::MessageLoopProxy* io_message_loop,
|
| base::WaitableEvent* shutdown_event,
|
| IPC::SyncChannel* channel);
|
| ~GpuChannelManager() override;
|
| @@ -137,7 +138,7 @@
|
| void OnLoseAllContexts();
|
| void CheckRelinquishGpuResources();
|
|
|
| - scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
|
| + scoped_refptr<base::MessageLoopProxy> io_message_loop_;
|
| base::WaitableEvent* shutdown_event_;
|
|
|
| // Used to send and receive IPC messages from the browser process.
|
|
|