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

Unified Diff: media/cdm/aes_decryptor.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/cast/test/utility/udp_proxy_main.cc ('k') | media/cdm/player_tracker_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/aes_decryptor.h
diff --git a/media/cdm/aes_decryptor.h b/media/cdm/aes_decryptor.h
index 98a79dd028c05f49a74f99bfbc79810e3c227e2a..306ceb95c29e731946fa2d5c36b7b0b72a94678b 100644
--- a/media/cdm/aes_decryptor.h
+++ b/media/cdm/aes_decryptor.h
@@ -36,45 +36,45 @@ class MEDIA_EXPORT AesDecryptor : public MediaKeys, public Decryptor {
virtual void SetServerCertificate(
const uint8* certificate_data,
int certificate_data_length,
- scoped_ptr<SimpleCdmPromise> promise) OVERRIDE;
+ scoped_ptr<SimpleCdmPromise> promise) override;
virtual void CreateSession(const std::string& init_data_type,
const uint8* init_data,
int init_data_length,
SessionType session_type,
- scoped_ptr<NewSessionCdmPromise> promise) OVERRIDE;
+ scoped_ptr<NewSessionCdmPromise> promise) override;
virtual void LoadSession(const std::string& web_session_id,
- scoped_ptr<NewSessionCdmPromise> promise) OVERRIDE;
+ scoped_ptr<NewSessionCdmPromise> promise) override;
virtual void UpdateSession(const std::string& web_session_id,
const uint8* response,
int response_length,
- scoped_ptr<SimpleCdmPromise> promise) OVERRIDE;
+ scoped_ptr<SimpleCdmPromise> promise) override;
virtual void CloseSession(const std::string& web_session_id,
- scoped_ptr<SimpleCdmPromise> promise) OVERRIDE;
+ scoped_ptr<SimpleCdmPromise> promise) override;
virtual void RemoveSession(const std::string& web_session_id,
- scoped_ptr<SimpleCdmPromise> promise) OVERRIDE;
+ scoped_ptr<SimpleCdmPromise> promise) override;
virtual void GetUsableKeyIds(const std::string& web_session_id,
- scoped_ptr<KeyIdsPromise> promise) OVERRIDE;
- virtual Decryptor* GetDecryptor() OVERRIDE;
+ scoped_ptr<KeyIdsPromise> promise) override;
+ virtual Decryptor* GetDecryptor() override;
// Decryptor implementation.
virtual void RegisterNewKeyCB(StreamType stream_type,
- const NewKeyCB& key_added_cb) OVERRIDE;
+ const NewKeyCB& key_added_cb) override;
virtual void Decrypt(StreamType stream_type,
const scoped_refptr<DecoderBuffer>& encrypted,
- const DecryptCB& decrypt_cb) OVERRIDE;
- virtual void CancelDecrypt(StreamType stream_type) OVERRIDE;
+ const DecryptCB& decrypt_cb) override;
+ virtual void CancelDecrypt(StreamType stream_type) override;
virtual void InitializeAudioDecoder(const AudioDecoderConfig& config,
- const DecoderInitCB& init_cb) OVERRIDE;
+ const DecoderInitCB& init_cb) override;
virtual void InitializeVideoDecoder(const VideoDecoderConfig& config,
- const DecoderInitCB& init_cb) OVERRIDE;
+ const DecoderInitCB& init_cb) override;
virtual void DecryptAndDecodeAudio(
const scoped_refptr<DecoderBuffer>& encrypted,
- const AudioDecodeCB& audio_decode_cb) OVERRIDE;
+ const AudioDecodeCB& audio_decode_cb) override;
virtual void DecryptAndDecodeVideo(
const scoped_refptr<DecoderBuffer>& encrypted,
- const VideoDecodeCB& video_decode_cb) OVERRIDE;
- virtual void ResetDecoder(StreamType stream_type) OVERRIDE;
- virtual void DeinitializeDecoder(StreamType stream_type) OVERRIDE;
+ const VideoDecodeCB& video_decode_cb) override;
+ virtual void ResetDecoder(StreamType stream_type) override;
+ virtual void DeinitializeDecoder(StreamType stream_type) override;
private:
// TODO(fgalligan): Remove this and change KeyMap to use crypto::SymmetricKey
« no previous file with comments | « media/cast/test/utility/udp_proxy_main.cc ('k') | media/cdm/player_tracker_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698