diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 21:47:58 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 21:47:58 +0000 |
commit | 885ff1dfd127346d8fd1bfa239c7375773aabe48 (patch) | |
tree | 6004858fef22e08c5c1b4570231e01e1f0290a43 /chrome/renderer/gpu_video_decoder_host.h | |
parent | 3bb08606c22e357896714764731a7af21e04377d (diff) | |
download | chromium_src-885ff1dfd127346d8fd1bfa239c7375773aabe48.zip chromium_src-885ff1dfd127346d8fd1bfa239c7375773aabe48.tar.gz chromium_src-885ff1dfd127346d8fd1bfa239c7375773aabe48.tar.bz2 |
GpuVideoDecoderHost runs on IO thread instead of Render thread
Move GpuVideoDecoderHost to IO thread and change GpuVideoServiceHost to
be a MessageFilter.
BUG=53714
TEST=Tree is green. Will pending on WebKit changes to make this work.
Review URL: http://codereview.chromium.org/3462015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/gpu_video_decoder_host.h')
-rw-r--r-- | chrome/renderer/gpu_video_decoder_host.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/renderer/gpu_video_decoder_host.h b/chrome/renderer/gpu_video_decoder_host.h index 5ca520e..baf0ffe 100644 --- a/chrome/renderer/gpu_video_decoder_host.h +++ b/chrome/renderer/gpu_video_decoder_host.h @@ -37,6 +37,10 @@ class MessageRouter; class GpuVideoDecoderHost : public media::VideoDecodeEngine, public IPC::Channel::Listener { public: + // |router| is used to dispatch IPC messages to this object. + // |ipc_sender| is used to send IPC messages to GPU process. + // It is important that the above two objects are accessed on the + // |message_loop_|. GpuVideoDecoderHost(MessageRouter* router, IPC::Message::Sender* ipc_sender, int context_route_id, |