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

Unified Diff: media/cdm/ppapi/external_clear_key/libvpx_cdm_video_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/cdm/ppapi/external_clear_key/ffmpeg_cdm_video_decoder.h ('k') | media/filters/audio_renderer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/ppapi/external_clear_key/libvpx_cdm_video_decoder.h
diff --git a/media/cdm/ppapi/external_clear_key/libvpx_cdm_video_decoder.h b/media/cdm/ppapi/external_clear_key/libvpx_cdm_video_decoder.h
index efa0e3664b3f3c7091714d8c77e3142970a5a552..0ba05b9cffe0240bff96bff22aadc1930957e66f 100644
--- a/media/cdm/ppapi/external_clear_key/libvpx_cdm_video_decoder.h
+++ b/media/cdm/ppapi/external_clear_key/libvpx_cdm_video_decoder.h
@@ -21,14 +21,14 @@ class LibvpxCdmVideoDecoder : public CdmVideoDecoder {
virtual ~LibvpxCdmVideoDecoder();
// CdmVideoDecoder implementation.
- virtual bool Initialize(const cdm::VideoDecoderConfig& config) OVERRIDE;
- virtual void Deinitialize() OVERRIDE;
- virtual void Reset() OVERRIDE;
+ virtual bool Initialize(const cdm::VideoDecoderConfig& config) override;
+ virtual void Deinitialize() override;
+ virtual void Reset() override;
virtual cdm::Status DecodeFrame(const uint8_t* compressed_frame,
int32_t compressed_frame_size,
int64_t timestamp,
- cdm::VideoFrame* decoded_frame) OVERRIDE;
- virtual bool is_initialized() const OVERRIDE { return is_initialized_; }
+ cdm::VideoFrame* decoded_frame) override;
+ virtual bool is_initialized() const override { return is_initialized_; }
// Returns true when |format| and |data_size| specify a supported video
// output configuration.
« no previous file with comments | « media/cdm/ppapi/external_clear_key/ffmpeg_cdm_video_decoder.h ('k') | media/filters/audio_renderer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698