summaryrefslogtreecommitdiffstats
path: root/chrome/common/gpu_video_common.cc
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 21:47:58 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 21:47:58 +0000
commit885ff1dfd127346d8fd1bfa239c7375773aabe48 (patch)
tree6004858fef22e08c5c1b4570231e01e1f0290a43 /chrome/common/gpu_video_common.cc
parent3bb08606c22e357896714764731a7af21e04377d (diff)
downloadchromium_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/common/gpu_video_common.cc')
-rw-r--r--chrome/common/gpu_video_common.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/chrome/common/gpu_video_common.cc b/chrome/common/gpu_video_common.cc
index f6339e3..e0279de 100644
--- a/chrome/common/gpu_video_common.cc
+++ b/chrome/common/gpu_video_common.cc
@@ -6,30 +6,6 @@
namespace IPC {
-void ParamTraits<GpuVideoServiceInfoParam>::Write(
- Message* m, const GpuVideoServiceInfoParam& p) {
- WriteParam(m, p.video_service_route_id);
- WriteParam(m, p.video_service_host_route_id);
- WriteParam(m, p.service_available);
-}
-
-bool ParamTraits<GpuVideoServiceInfoParam>::Read(
- const Message* m, void** iter, GpuVideoServiceInfoParam* r) {
- if (!ReadParam(m, iter, &r->video_service_route_id) ||
- !ReadParam(m, iter, &r->video_service_host_route_id) ||
- !ReadParam(m, iter, &r->service_available))
- return false;
- return true;
-}
-
-void ParamTraits<GpuVideoServiceInfoParam>::Log(
- const GpuVideoServiceInfoParam& p, std::string* l) {
- l->append(StringPrintf("(%d, %d, %d)",
- p.video_service_route_id,
- p.video_service_host_route_id,
- p.service_available));
-}
-
///////////////////////////////////////////////////////////////////////////////
void ParamTraits<GpuVideoDecoderInitParam>::Write(