| Index: content/child/webcrypto/webcrypto_impl.cc
|
| diff --git a/content/child/webcrypto/webcrypto_impl.cc b/content/child/webcrypto/webcrypto_impl.cc
|
| index 076df0d4a3e14296ef9ca7f06f6207f9d6fffd60..cc18630e4a7c402400a9d796c6c9ea4380f06ff7 100644
|
| --- a/content/child/webcrypto/webcrypto_impl.cc
|
| +++ b/content/child/webcrypto/webcrypto_impl.cc
|
| @@ -5,6 +5,7 @@
|
| #include "content/child/webcrypto/webcrypto_impl.h"
|
|
|
| #include "base/logging.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "content/child/webcrypto/crypto_data.h"
|
| #include "content/child/webcrypto/shared_crypto.h"
|
| #include "content/child/webcrypto/status.h"
|
| @@ -248,6 +249,11 @@ bool WebCryptoImpl::digestSynchronous(
|
| .IsSuccess();
|
| }
|
|
|
| +blink::WebCryptoDigestor* WebCryptoImpl::createDigestor(
|
| + blink::WebCryptoAlgorithmId algorithm_id) {
|
| + return webcrypto::CreateDigestor(algorithm_id).release();
|
| +}
|
| +
|
| bool WebCryptoImpl::deserializeKeyForClone(
|
| const blink::WebCryptoKeyAlgorithm& algorithm,
|
| blink::WebCryptoKeyType type,
|
|
|