Index: content/common/gpu/media/generic_v4l2_video_device.h |
diff --git a/content/common/gpu/media/generic_v4l2_video_device.h b/content/common/gpu/media/generic_v4l2_video_device.h |
index 39d6df6d77e1d35fc81aae676d5c25a96e13ce8c..0e3c89de26ae418a72e645c7e9b6b1cd08869c57 100644 |
--- a/content/common/gpu/media/generic_v4l2_video_device.h |
+++ b/content/common/gpu/media/generic_v4l2_video_device.h |
@@ -15,7 +15,6 @@ namespace content { |
class GenericV4L2Device : public V4L2Device { |
public: |
explicit GenericV4L2Device(Type type); |
- virtual ~GenericV4L2Device(); |
// V4L2Device implementation. |
int Ioctl(int request, void* arg) override; |
@@ -43,6 +42,8 @@ class GenericV4L2Device : public V4L2Device { |
uint32 PreferredInputFormat() override; |
private: |
+ virtual ~GenericV4L2Device(); |
scherkus (not reviewing)
2015/01/13 01:24:59
override
Pawel Osciak
2015/01/13 11:33:34
Done.
|
+ |
const Type type_; |
// The actual device fd. |