Index: content/renderer/media/native_handle_impl.h |
diff --git a/content/renderer/media/native_handle_impl.h b/content/renderer/media/native_handle_impl.h |
index 7b5748b681145c314fc9b53de52ca4d0395f09b9..20a4f038c6f268b969dbddd833a35941a870cb9e 100644 |
--- a/content/renderer/media/native_handle_impl.h |
+++ b/content/renderer/media/native_handle_impl.h |
@@ -15,11 +15,11 @@ class NativeHandleImpl : public webrtc::NativeHandle { |
public: |
// Wraps a video frame in the handle. |
explicit NativeHandleImpl(scoped_refptr<media::VideoFrame> frame); |
- virtual ~NativeHandleImpl(); |
+ ~NativeHandleImpl() override; |
// Retrieves the video frame in the handle. The frame is still ref-counted by |
// the handle. The ref count decreases when NativeHandleImpl is destroyed. |
- virtual void* GetHandle() override; |
+ void* GetHandle() override; |
private: |
scoped_refptr<media::VideoFrame> frame_; |