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

Unified Diff: Source/modules/crypto/CryptoResultImpl.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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
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.
« no previous file with comments | « Source/modules/credentialmanager/CredentialsContainer.cpp ('k') | Source/modules/crypto/CryptoResultImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698