Index: Source/modules/encryptedmedia/ContentDecryptionModuleResultPromise.h |
diff --git a/Source/modules/encryptedmedia/ContentDecryptionModuleResultPromise.h b/Source/modules/encryptedmedia/ContentDecryptionModuleResultPromise.h |
index fa72f189038400d174573903d0728857d8d7b260..77d35fde91f685fb52302eeff64541b2649bd5cf 100644 |
--- a/Source/modules/encryptedmedia/ContentDecryptionModuleResultPromise.h |
+++ b/Source/modules/encryptedmedia/ContentDecryptionModuleResultPromise.h |
@@ -20,13 +20,13 @@ ExceptionCode WebCdmExceptionToExceptionCode(WebContentDecryptionModuleException |
// method overridden to resolve the promise as needed. |
class ContentDecryptionModuleResultPromise : public ContentDecryptionModuleResult { |
public: |
- virtual ~ContentDecryptionModuleResultPromise(); |
+ ~ContentDecryptionModuleResultPromise() override; |
// ContentDecryptionModuleResult implementation. |
- virtual void complete() override; |
- virtual void completeWithContentDecryptionModule(WebContentDecryptionModule*) override; |
- virtual void completeWithSession(WebContentDecryptionModuleResult::SessionStatus) override; |
- virtual void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString&) final; |
+ void complete() override; |
+ void completeWithContentDecryptionModule(WebContentDecryptionModule*) override; |
+ void completeWithSession(WebContentDecryptionModuleResult::SessionStatus) override; |
+ void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString&) final; |
// It is only valid to call this before completion. |
ScriptPromise promise(); |