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

Unified Diff: media/blink/new_session_cdm_result_promise.h

Issue 655713003: Standardize usage of virtual/override/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/blink/buffered_data_source_host_impl.h ('k') | media/blink/null_encrypted_media_player_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/blink/new_session_cdm_result_promise.h
diff --git a/media/blink/new_session_cdm_result_promise.h b/media/blink/new_session_cdm_result_promise.h
index 79956cc31dd742f53432f8ce96b2407d8c5c4ca9..7ed6ec109ba5fdfa6899d10f6fb609796a90b713 100644
--- a/media/blink/new_session_cdm_result_promise.h
+++ b/media/blink/new_session_cdm_result_promise.h
@@ -29,13 +29,13 @@ class MEDIA_EXPORT NewSessionCdmResultPromise
const blink::WebContentDecryptionModuleResult& result,
const std::string& uma_name,
const SessionInitializedCB& new_session_created_cb);
- virtual ~NewSessionCdmResultPromise();
+ ~NewSessionCdmResultPromise() override;
// CdmPromiseTemplate<T> implementation.
- virtual void resolve(const std::string& web_session_id) override;
- virtual void reject(MediaKeys::Exception exception_code,
- uint32 system_code,
- const std::string& error_message) override;
+ void resolve(const std::string& web_session_id) override;
+ void reject(MediaKeys::Exception exception_code,
+ uint32 system_code,
+ const std::string& error_message) override;
private:
blink::WebContentDecryptionModuleResult web_cdm_result_;
« no previous file with comments | « media/blink/buffered_data_source_host_impl.h ('k') | media/blink/null_encrypted_media_player_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698