Index: content/common/gpu/media/v4l2_video_device.cc |
diff --git a/content/common/gpu/media/v4l2_video_device.cc b/content/common/gpu/media/v4l2_video_device.cc |
index 0e97b03b6aee7e7b0ccdb05e77b8e1f9ef51ef7f..59775c3835aef64991243c1fbc2483bb16285323 100644 |
--- a/content/common/gpu/media/v4l2_video_device.cc |
+++ b/content/common/gpu/media/v4l2_video_device.cc |
@@ -6,9 +6,7 @@ |
#include "base/numerics/safe_conversions.h" |
#include "content/common/gpu/media/generic_v4l2_video_device.h" |
-#if defined(ARCH_CPU_ARMEL) |
#include "content/common/gpu/media/tegra_v4l2_video_device.h" |
-#endif |
namespace content { |
@@ -22,11 +20,9 @@ |
if (generic_device->Initialize()) |
return generic_device.Pass(); |
-#if defined(ARCH_CPU_ARMEL) |
scoped_ptr<TegraV4L2Device> tegra_device(new TegraV4L2Device(type)); |
if (tegra_device->Initialize()) |
return tegra_device.Pass(); |
-#endif |
LOG(ERROR) << "Failed to create V4L2Device"; |
return scoped_ptr<V4L2Device>(); |