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

Unified Diff: media/filters/video_renderer_impl.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/filters/video_frame_scheduler_proxy.h ('k') | media/filters/vpx_video_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_renderer_impl.h
diff --git a/media/filters/video_renderer_impl.h b/media/filters/video_renderer_impl.h
index 3cda321e5d7ea61c820902f1f70efd2710c5fb15..557a88475e4123226c9c7409eedf5ed8196c7ee9 100644
--- a/media/filters/video_renderer_impl.h
+++ b/media/filters/video_renderer_impl.h
@@ -56,22 +56,22 @@ class MEDIA_EXPORT VideoRendererImpl
const PaintCB& paint_cb,
bool drop_frames,
const scoped_refptr<MediaLog>& media_log);
- virtual ~VideoRendererImpl();
+ ~VideoRendererImpl() override;
// VideoRenderer implementation.
- virtual void Initialize(DemuxerStream* stream,
- bool low_delay,
- const PipelineStatusCB& init_cb,
- const StatisticsCB& statistics_cb,
- const BufferingStateCB& buffering_state_cb,
- const base::Closure& ended_cb,
- const PipelineStatusCB& error_cb,
- const TimeDeltaCB& get_time_cb) override;
- virtual void Flush(const base::Closure& callback) override;
- virtual void StartPlayingFrom(base::TimeDelta timestamp) override;
+ void Initialize(DemuxerStream* stream,
+ bool low_delay,
+ const PipelineStatusCB& init_cb,
+ const StatisticsCB& statistics_cb,
+ const BufferingStateCB& buffering_state_cb,
+ const base::Closure& ended_cb,
+ const PipelineStatusCB& error_cb,
+ const TimeDeltaCB& get_time_cb) override;
+ void Flush(const base::Closure& callback) override;
+ void StartPlayingFrom(base::TimeDelta timestamp) override;
// PlatformThread::Delegate implementation.
- virtual void ThreadMain() override;
+ void ThreadMain() override;
private:
// Callback for |video_frame_stream_| initialization.
« no previous file with comments | « media/filters/video_frame_scheduler_proxy.h ('k') | media/filters/vpx_video_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698