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

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

Issue 243853004: [webcrypto] Reject failed operations with a DOMException rather than null. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile warning Created 6 years, 8 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 | « LayoutTests/crypto/wrapKey-unextractable-expected.txt ('k') | Source/modules/crypto/CryptoResultImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/CryptoResultImpl.h
diff --git a/Source/modules/crypto/CryptoResultImpl.h b/Source/modules/crypto/CryptoResultImpl.h
index 94df5aabaf0f2e8c4746acca157963a5b30233e8..9d654d363ac1c8629fa12bf490dc5b8b9a29bef0 100644
--- a/Source/modules/crypto/CryptoResultImpl.h
+++ b/Source/modules/crypto/CryptoResultImpl.h
@@ -55,8 +55,7 @@ public:
static PassRefPtr<CryptoResultImpl> create();
- virtual void completeWithError() OVERRIDE;
- virtual void completeWithError(const blink::WebString&) OVERRIDE;
+ virtual void completeWithError(blink::WebCryptoErrorType, const blink::WebString&) OVERRIDE;
virtual void completeWithBuffer(const blink::WebArrayBuffer&) OVERRIDE;
virtual void completeWithBoolean(bool) OVERRIDE;
virtual void completeWithKey(const blink::WebCryptoKey&) OVERRIDE;
« no previous file with comments | « LayoutTests/crypto/wrapKey-unextractable-expected.txt ('k') | Source/modules/crypto/CryptoResultImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698