| 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() { }
|
|
|