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

Unified Diff: media/filters/video_renderer_base.h

Issue 8520033: Add OVERRIDE to media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/reference_audio_renderer.h ('k') | media/video/capture/fake_video_capture_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_renderer_base.h
diff --git a/media/filters/video_renderer_base.h b/media/filters/video_renderer_base.h
index c604f0839398e05613be9b5463b7bc85123ea424..47c3893c56286191e5b455cc768ccd3e1590ccf0 100644
--- a/media/filters/video_renderer_base.h
+++ b/media/filters/video_renderer_base.h
@@ -37,21 +37,21 @@ class MEDIA_EXPORT VideoRendererBase
virtual ~VideoRendererBase();
// Filter implementation.
- virtual void Play(const base::Closure& callback);
- virtual void Pause(const base::Closure& callback);
- virtual void Flush(const base::Closure& callback);
- virtual void Stop(const base::Closure& callback);
- virtual void SetPlaybackRate(float playback_rate);
- virtual void Seek(base::TimeDelta time, const FilterStatusCB& cb);
+ virtual void Play(const base::Closure& callback) OVERRIDE;
+ virtual void Pause(const base::Closure& callback) OVERRIDE;
+ virtual void Flush(const base::Closure& callback) OVERRIDE;
+ virtual void Stop(const base::Closure& callback) OVERRIDE;
+ virtual void SetPlaybackRate(float playback_rate) OVERRIDE;
+ virtual void Seek(base::TimeDelta time, const FilterStatusCB& cb) OVERRIDE;
// VideoRenderer implementation.
virtual void Initialize(VideoDecoder* decoder,
const base::Closure& callback,
- const StatisticsCallback& stats_callback);
- virtual bool HasEnded();
+ const StatisticsCallback& stats_callback) OVERRIDE;
+ virtual bool HasEnded() OVERRIDE;
// PlatformThread::Delegate implementation.
- virtual void ThreadMain();
+ virtual void ThreadMain() OVERRIDE;
// Clients of this class (painter/compositor) should use GetCurrentFrame()
// obtain ownership of VideoFrame, it should always relinquish the ownership
« no previous file with comments | « media/filters/reference_audio_renderer.h ('k') | media/video/capture/fake_video_capture_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698