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

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

Issue 338993002: [webcrypto] exportKey() now returns dictionary when format='jwk' (CL 2 of 2). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 5f4c88e04d28012f87e4ac150f003fe3a588eafc..63a0193e001c53cc9a19ad67065fb7cb57ead704 100644
--- a/Source/modules/crypto/CryptoResultImpl.h
+++ b/Source/modules/crypto/CryptoResultImpl.h
@@ -61,6 +61,7 @@ public:
virtual void completeWithError(blink::WebCryptoErrorType, const blink::WebString&) OVERRIDE;
virtual void completeWithBuffer(const blink::WebArrayBuffer&) OVERRIDE;
+ virtual void completeWithJson(const char* utf8Data, unsigned length) OVERRIDE;
virtual void completeWithBoolean(bool) OVERRIDE;
virtual void completeWithKey(const blink::WebCryptoKey&) OVERRIDE;
virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698