Index: webrtc/media/engine/webrtcvideocapturer.h |
diff --git a/webrtc/media/engine/webrtcvideocapturer.h b/webrtc/media/engine/webrtcvideocapturer.h |
index b6b39386c1b6c5cade252753b626a5393ab23cdd..1efa4ad66fe5f14b267954f6a40f463e02925f89 100644 |
--- a/webrtc/media/engine/webrtcvideocapturer.h |
+++ b/webrtc/media/engine/webrtcvideocapturer.h |
@@ -61,14 +61,14 @@ class WebRtcVideoCapturer : public VideoCapturer, |
protected: |
void OnSinkWantsChanged(const rtc::VideoSinkWants& wants) override; |
// Override virtual methods of the parent class VideoCapturer. |
- virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs); |
+ bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) override; |
private: |
// Callback when a frame is captured by camera. |
- virtual void OnIncomingCapturedFrame(const int32_t id, |
- const webrtc::VideoFrame& frame); |
- virtual void OnCaptureDelayChanged(const int32_t id, |
- const int32_t delay); |
+ void OnIncomingCapturedFrame(const int32_t id, |
+ const webrtc::VideoFrame& frame) override; |
+ void OnCaptureDelayChanged(const int32_t id, |
+ const int32_t delay) override; |
// Used to signal captured frames on the same thread as invoked Start(). |
// With WebRTC's current VideoCapturer implementations, this will mean a |