| Index: components/webcrypto/algorithms/sha.cc
|
| diff --git a/components/webcrypto/algorithms/sha.cc b/components/webcrypto/algorithms/sha.cc
|
| index 5baa0e2fdbe1ae6d87d6c0f800df91d843f6711b..cd380a040d8e878ea335c2b689aedbb8ab69f5be 100644
|
| --- a/components/webcrypto/algorithms/sha.cc
|
| +++ b/components/webcrypto/algorithms/sha.cc
|
| @@ -125,7 +125,7 @@ class ShaImplementation : public AlgorithmImplementation {
|
| } // namespace
|
|
|
| std::unique_ptr<AlgorithmImplementation> CreateShaImplementation() {
|
| - return base::WrapUnique(new ShaImplementation());
|
| + return base::MakeUnique<ShaImplementation>();
|
| }
|
|
|
| std::unique_ptr<blink::WebCryptoDigestor> CreateDigestorImplementation(
|
|
|