| Index: components/webcrypto/algorithms/ecdh.cc
|
| diff --git a/components/webcrypto/algorithms/ecdh.cc b/components/webcrypto/algorithms/ecdh.cc
|
| index 02282cba5fb9a18071de55e2820035681a4f48d3..2c0c2da559ccd2e6cd6f11cd7fa1c59a26a300a7 100644
|
| --- a/components/webcrypto/algorithms/ecdh.cc
|
| +++ b/components/webcrypto/algorithms/ecdh.cc
|
| @@ -2,9 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <openssl/ec.h>
|
| -#include <openssl/ecdh.h>
|
| -#include <openssl/evp.h>
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| @@ -22,6 +19,9 @@
|
| #include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
|
| #include "third_party/WebKit/public/platform/WebCryptoKey.h"
|
| #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h"
|
| +#include "third_party/boringssl/src/include/openssl/ec.h"
|
| +#include "third_party/boringssl/src/include/openssl/ecdh.h"
|
| +#include "third_party/boringssl/src/include/openssl/evp.h"
|
|
|
| namespace webcrypto {
|
|
|
|
|