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

Unified Diff: media/filters/ffmpeg_audio_decoder.h

Issue 623263003: replace OVERRIDE and FINAL with override and 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/fake_video_decoder.h ('k') | media/filters/ffmpeg_demuxer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_audio_decoder.h
diff --git a/media/filters/ffmpeg_audio_decoder.h b/media/filters/ffmpeg_audio_decoder.h
index b13a0163a6d67404957110510d8a1b81306f90ca..bd0128cd96d02e37a4cc973d7fa2104da1620945 100644
--- a/media/filters/ffmpeg_audio_decoder.h
+++ b/media/filters/ffmpeg_audio_decoder.h
@@ -36,13 +36,13 @@ class MEDIA_EXPORT FFmpegAudioDecoder : public AudioDecoder {
virtual ~FFmpegAudioDecoder();
// AudioDecoder implementation.
- virtual std::string GetDisplayName() const OVERRIDE;
+ virtual std::string GetDisplayName() const override;
virtual void Initialize(const AudioDecoderConfig& config,
const PipelineStatusCB& status_cb,
- const OutputCB& output_cb) OVERRIDE;
+ const OutputCB& output_cb) override;
virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
- const DecodeCB& decode_cb) OVERRIDE;
- virtual void Reset(const base::Closure& closure) OVERRIDE;
+ const DecodeCB& decode_cb) override;
+ virtual void Reset(const base::Closure& closure) override;
private:
// There are four states the decoder can be in:
« no previous file with comments | « media/filters/fake_video_decoder.h ('k') | media/filters/ffmpeg_demuxer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698