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

Unified Diff: Source/core/platform/chromium/support/WebCrypto.cpp

Issue 21561004: WebCrypto: Add crypto.subtle.verify() to the platform interfaces. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing file common.js Created 7 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
« no previous file with comments | « Source/bindings/v8/ScriptValue.h ('k') | Source/modules/crypto/CryptoOperation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/chromium/support/WebCrypto.cpp
diff --git a/Source/core/platform/chromium/support/WebCrypto.cpp b/Source/core/platform/chromium/support/WebCrypto.cpp
index 73e8a29abb3b72207ab05fdf1fbff87c4d5f7edd..9f63634011e01d67f48d1fb2dfc9414073c240b6 100644
--- a/Source/core/platform/chromium/support/WebCrypto.cpp
+++ b/Source/core/platform/chromium/support/WebCrypto.cpp
@@ -59,6 +59,12 @@ void WebCryptoOperationResult::completeWithArrayBuffer(const WebArrayBuffer& buf
reset();
}
+void WebCryptoOperationResult::completeWithBoolean(bool b)
+{
+ m_impl->completeWithBoolean(b);
+ reset();
+}
+
void WebCryptoOperationResult::reset()
{
m_impl.reset();
« no previous file with comments | « Source/bindings/v8/ScriptValue.h ('k') | Source/modules/crypto/CryptoOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698