Index: content/common/gpu/gpu_video_service.cc |
=================================================================== |
--- content/common/gpu/gpu_video_service.cc (revision 86686) |
+++ content/common/gpu/gpu_video_service.cc (working copy) |
@@ -8,10 +8,6 @@ |
#include "content/common/gpu/gpu_messages.h" |
#include "content/common/gpu/gpu_video_decode_accelerator.h" |
-#if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) |
-#include "content/common/gpu/omx_video_decode_accelerator.h" |
-#endif // defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) |
- |
GpuVideoService::GpuVideoService() { |
// TODO(jiesun): move this time consuming stuff out of here. |
IntializeGpuVideoService(); |
@@ -61,10 +57,6 @@ |
// Create GpuVideoDecodeAccelerator and add to map. |
scoped_refptr<GpuVideoDecodeAccelerator> decoder = |
new GpuVideoDecodeAccelerator(channel, decoder_host_id); |
-#if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) |
- decoder->set_video_decode_accelerator( |
- new OmxVideoDecodeAccelerator(decoder, MessageLoop::current())); |
-#endif // defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) |
bool result = decoder_map_.insert(std::make_pair(decoder_id, decoder)).second; |