Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: content/renderer/media/webrtc/media_stream_remote_video_source.h

Issue 670683003: Standardize usage of virtual/override/final in content/renderer/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/webrtc/media_stream_remote_video_source.h
diff --git a/content/renderer/media/webrtc/media_stream_remote_video_source.h b/content/renderer/media/webrtc/media_stream_remote_video_source.h
index ecf5aa55ea6355518b4afd71ecc80b86b07a152e..5591b3ec4cc99e7a69bfbe88c7c03b615b958b63 100644
--- a/content/renderer/media/webrtc/media_stream_remote_video_source.h
+++ b/content/renderer/media/webrtc/media_stream_remote_video_source.h
@@ -27,17 +27,17 @@ class CONTENT_EXPORT MediaStreamRemoteVideoSource
protected:
// Implements MediaStreamVideoSource.
- virtual void GetCurrentSupportedFormats(
+ void GetCurrentSupportedFormats(
int max_requested_width,
int max_requested_height,
double max_requested_frame_rate,
const VideoCaptureDeviceFormatsCB& callback) override;
- virtual void StartSourceImpl(
+ void StartSourceImpl(
const media::VideoCaptureFormat& format,
const VideoCaptureDeliverFrameCB& frame_callback) override;
- virtual void StopSourceImpl() override;
+ void StopSourceImpl() override;
// Used by tests to test that a frame can be received and that the
// MediaStreamRemoteVideoSource behaves as expected.
@@ -45,7 +45,7 @@ class CONTENT_EXPORT MediaStreamRemoteVideoSource
private:
// webrtc::ObserverInterface implementation.
- virtual void OnChanged() override;
+ void OnChanged() override;
scoped_refptr<webrtc::VideoTrackInterface> remote_track_;
webrtc::MediaStreamTrackInterface::TrackState last_state_;
« no previous file with comments | « content/renderer/media/webmediaplayer_ms.h ('k') | content/renderer/media/webrtc/media_stream_remote_video_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698