Index: webrtc/api/videotrack.h |
diff --git a/webrtc/api/videotrack.h b/webrtc/api/videotrack.h |
index 60a0a64aec7388a5eea571b89bb17ebb345d9613..2f875321c1ad134fe7184622619a1820c4b96610 100644 |
--- a/webrtc/api/videotrack.h |
+++ b/webrtc/api/videotrack.h |
@@ -33,11 +33,11 @@ |
const rtc::VideoSinkWants& wants) override; |
void RemoveSink(rtc::VideoSinkInterface<cricket::VideoFrame>* sink) override; |
- VideoTrackSourceInterface* GetSource() const override { |
+ virtual VideoTrackSourceInterface* GetSource() const { |
return video_source_.get(); |
} |
- bool set_enabled(bool enable) override; |
- std::string kind() const override; |
+ virtual bool set_enabled(bool enable); |
+ virtual std::string kind() const; |
protected: |
VideoTrack(const std::string& id, VideoTrackSourceInterface* video_source); |