| Index: components/webcrypto/webcrypto_impl.cc
|
| diff --git a/components/webcrypto/webcrypto_impl.cc b/components/webcrypto/webcrypto_impl.cc
|
| index 7986b7741148e12e16ede9dbc6b392352cf098f5..9f4727022acd6c8d13e2b23a15f00894db7921c2 100644
|
| --- a/components/webcrypto/webcrypto_impl.cc
|
| +++ b/components/webcrypto/webcrypto_impl.cc
|
| @@ -763,9 +763,9 @@ void WebCryptoImpl::deriveKey(
|
| }
|
| }
|
|
|
| -blink::WebCryptoDigestor* WebCryptoImpl::createDigestor(
|
| +std::unique_ptr<blink::WebCryptoDigestor> WebCryptoImpl::createDigestor(
|
| blink::WebCryptoAlgorithmId algorithm_id) {
|
| - return webcrypto::CreateDigestor(algorithm_id).release();
|
| + return webcrypto::CreateDigestor(algorithm_id);
|
| }
|
|
|
| bool WebCryptoImpl::deserializeKeyForClone(
|
|
|