diff options
author | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 13:23:32 +0000 |
---|---|---|
committer | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 13:23:32 +0000 |
commit | 62c93bdaa8827c11c64b06b6fb1b325499330dde (patch) | |
tree | bdebdab2095fbd052ea159a4c91e6d00056df75a /chrome/gpu | |
parent | 67c9607f09711b2f27c383836af9526c1ec10054 (diff) | |
download | chromium_src-62c93bdaa8827c11c64b06b6fb1b325499330dde.zip chromium_src-62c93bdaa8827c11c64b06b6fb1b325499330dde.tar.gz chromium_src-62c93bdaa8827c11c64b06b6fb1b325499330dde.tar.bz2 |
Don't compile in experimental GPU video decoding IPC handling for now.
BUG=NONE
TEST=NONE
Review URL: http://codereview.chromium.org/6473016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75108 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/gpu')
-rw-r--r-- | chrome/gpu/gpu_channel.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/gpu/gpu_channel.cc b/chrome/gpu/gpu_channel.cc index 1848a2c..5b1e368 100644 --- a/chrome/gpu/gpu_channel.cc +++ b/chrome/gpu/gpu_channel.cc @@ -171,7 +171,9 @@ void GpuChannel::OnDestroyCommandBuffer(int32 route_id) { void GpuChannel::OnCreateVideoDecoder(int32 context_route_id, int32 decoder_host_id) { -#if defined(ENABLE_GPU) +// TODO(cevans): do NOT re-enable this until GpuVideoService has been checked +// for integer overflows, including the classic "width * height" overflow. +#if 0 VLOG(1) << "GpuChannel::OnCreateVideoDecoder"; GpuVideoService* service = GpuVideoService::GetInstance(); if (service == NULL) { |