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

Unified Diff: media/base/mock_filters.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/base/mock_audio_renderer_sink.h ('k') | media/base/pipeline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mock_filters.h
diff --git a/media/base/mock_filters.h b/media/base/mock_filters.h
index 8caf9f84c05e6b4a1a309183793578cd227ae478..d2b9bd6c12cd8cb41ff31a4b58c412c0ed3fdcbe 100644
--- a/media/base/mock_filters.h
+++ b/media/base/mock_filters.h
@@ -53,17 +53,17 @@ class MockDemuxerStream : public DemuxerStream {
virtual ~MockDemuxerStream();
// DemuxerStream implementation.
- virtual Type type() OVERRIDE;
+ virtual Type type() override;
MOCK_METHOD1(Read, void(const ReadCB& read_cb));
- virtual AudioDecoderConfig audio_decoder_config() OVERRIDE;
- virtual VideoDecoderConfig video_decoder_config() OVERRIDE;
+ virtual AudioDecoderConfig audio_decoder_config() override;
+ virtual VideoDecoderConfig video_decoder_config() override;
MOCK_METHOD0(EnableBitstreamConverter, void());
MOCK_METHOD0(SupportsConfigChanges, bool());
void set_audio_decoder_config(const AudioDecoderConfig& config);
void set_video_decoder_config(const VideoDecoderConfig& config);
- virtual VideoRotation video_rotation() OVERRIDE;
+ virtual VideoRotation video_rotation() override;
private:
DemuxerStream::Type type_;
« no previous file with comments | « media/base/mock_audio_renderer_sink.h ('k') | media/base/pipeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698