| Index: components/webcrypto/algorithms/ecdsa.cc
|
| diff --git a/components/webcrypto/algorithms/ecdsa.cc b/components/webcrypto/algorithms/ecdsa.cc
|
| index 0a0e1227306d0ee9bec1e06862f03ca788076153..9c6762664e9effc3426487d6befc760aebf24497 100644
|
| --- a/components/webcrypto/algorithms/ecdsa.cc
|
| +++ b/components/webcrypto/algorithms/ecdsa.cc
|
| @@ -2,13 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <openssl/bn.h>
|
| -#include <openssl/digest.h>
|
| -#include <openssl/ec.h>
|
| -#include <openssl/ec_key.h>
|
| -#include <openssl/ecdsa.h>
|
| -#include <openssl/evp.h>
|
| -#include <openssl/mem.h>
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| @@ -26,6 +19,13 @@
|
| #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/bn.h"
|
| +#include "third_party/boringssl/src/include/openssl/digest.h"
|
| +#include "third_party/boringssl/src/include/openssl/ec.h"
|
| +#include "third_party/boringssl/src/include/openssl/ec_key.h"
|
| +#include "third_party/boringssl/src/include/openssl/ecdsa.h"
|
| +#include "third_party/boringssl/src/include/openssl/evp.h"
|
| +#include "third_party/boringssl/src/include/openssl/mem.h"
|
|
|
| namespace webcrypto {
|
|
|
|
|