| Index: components/webcrypto/algorithms/pbkdf2.cc
|
| diff --git a/components/webcrypto/algorithms/pbkdf2.cc b/components/webcrypto/algorithms/pbkdf2.cc
|
| index 6296162c612c2a9756ec6632d55d174eb763b161..5e62bc567fc4f90e7d8eca9c7b5e04c9e76ae564 100644
|
| --- a/components/webcrypto/algorithms/pbkdf2.cc
|
| +++ b/components/webcrypto/algorithms/pbkdf2.cc
|
| @@ -2,7 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <openssl/evp.h>
|
| #include <stdint.h>
|
|
|
| #include "base/memory/ptr_util.h"
|
| @@ -16,6 +15,7 @@
|
| #include "crypto/openssl_util.h"
|
| #include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
|
| #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h"
|
| +#include "third_party/boringssl/src/include/openssl/evp.h"
|
|
|
| namespace webcrypto {
|
|
|
|
|