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

Unified Diff: media/cast/sender/video_sender.h

Issue 655713003: Standardize usage of virtual/override/final in media/ (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
« no previous file with comments | « media/cast/sender/video_encoder_impl.h ('k') | media/cast/sender/video_sender_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/video_sender.h
diff --git a/media/cast/sender/video_sender.h b/media/cast/sender/video_sender.h
index 6c0bad72b16ddfa7b0ccf21cf1e1f242989c65ab..826099ecf4dc728f31f57e954fc057fc196aa277 100644
--- a/media/cast/sender/video_sender.h
+++ b/media/cast/sender/video_sender.h
@@ -45,7 +45,7 @@ class VideoSender : public FrameSender,
CastTransportSender* const transport_sender,
const PlayoutDelayChangeCB& playout_delay_change_cb);
- virtual ~VideoSender();
+ ~VideoSender() override;
// Note: It is not guaranteed that |video_frame| will actually be encoded and
// sent, if VideoSender detects too many frames in flight. Therefore, clients
@@ -57,9 +57,9 @@ class VideoSender : public FrameSender,
const base::TimeTicks& reference_time);
protected:
- virtual int GetNumberOfFramesInEncoder() const override;
- virtual base::TimeDelta GetInFlightMediaDuration() const override;
- virtual void OnAck(uint32 frame_id) override;
+ int GetNumberOfFramesInEncoder() const override;
+ base::TimeDelta GetInFlightMediaDuration() const override;
+ void OnAck(uint32 frame_id) override;
private:
// Called when the encoder is initialized or has failed to initialize.
« no previous file with comments | « media/cast/sender/video_encoder_impl.h ('k') | media/cast/sender/video_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698