Index: Source/modules/crypto/CryptoResultImpl.h |
diff --git a/Source/modules/crypto/CryptoResultImpl.h b/Source/modules/crypto/CryptoResultImpl.h |
index f459904638fdc2d207d29f2c325698da7cc5ec88..b6cb6e90126c8290fdfbbd3a2172afc230868247 100644 |
--- a/Source/modules/crypto/CryptoResultImpl.h |
+++ b/Source/modules/crypto/CryptoResultImpl.h |
@@ -59,13 +59,13 @@ public: |
static PassRefPtrWillBeRawPtr<CryptoResultImpl> create(ScriptState*); |
- virtual void completeWithError(WebCryptoErrorType, const WebString&) override; |
- virtual void completeWithBuffer(const void* bytes, unsigned bytesSize) override; |
- virtual void completeWithJson(const char* utf8Data, unsigned length) override; |
- virtual void completeWithBoolean(bool) override; |
- virtual void completeWithKey(const WebCryptoKey&) override; |
- virtual void completeWithKeyPair(const WebCryptoKey& publicKey, const WebCryptoKey& privateKey) override; |
- virtual bool cancelled() const override; |
+ void completeWithError(WebCryptoErrorType, const WebString&) override; |
+ void completeWithBuffer(const void* bytes, unsigned bytesSize) override; |
+ void completeWithJson(const char* utf8Data, unsigned length) override; |
+ void completeWithBoolean(bool) override; |
+ void completeWithKey(const WebCryptoKey&) override; |
+ void completeWithKeyPair(const WebCryptoKey& publicKey, const WebCryptoKey& privateKey) override; |
+ bool cancelled() const override; |
// If called after completion (including cancellation) will return an empty |
// ScriptPromise. |