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

Unified Diff: public/platform/WebCrypto.h

Issue 19384009: Rename WebCrypto::digest2 --> WebCrypto::digest (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/modules/crypto/SubtleCrypto.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebCrypto.h
diff --git a/public/platform/WebCrypto.h b/public/platform/WebCrypto.h
index 977da0e68a8a054b58d2621c20f0aa1b58dde561..4b091d16929eccbd290a3af61ec04e6ba0eb4b08 100644
--- a/public/platform/WebCrypto.h
+++ b/public/platform/WebCrypto.h
@@ -44,7 +44,7 @@ class WebCryptoOperationResult;
class WebCrypto {
public:
// FIXME: Deprecated, delete once chromium side is updated.
- virtual WebCryptoOperation* digest(const WebCryptoAlgorithm&) = 0;
+ virtual WebCryptoOperation* digest(const WebCryptoAlgorithm&) { return 0; }
// The following methods begin an asynchronous multi-part cryptographic
// operation.
@@ -84,7 +84,7 @@ public:
// Once the cryptoOperation is no longer "in progress" the "result" pointer
// is no longer valid. At this time the embedder is responsible for freeing
// the cryptoOperation.
- virtual void digest2(const WebCryptoAlgorithm&, WebCryptoOperationResult*) { }
+ virtual void digest(const WebCryptoAlgorithm&, WebCryptoOperationResult*) { }
protected:
virtual ~WebCrypto() { }
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698