| Index: crypto/ec_private_key_openssl.cc
|
| diff --git a/crypto/ec_private_key_openssl.cc b/crypto/ec_private_key_openssl.cc
|
| index 9836fa69c5d38f79dbdd91d36f9ea035edc2b5f9..2d780435db7653a31275b9c6bbfc911c9838545f 100644
|
| --- a/crypto/ec_private_key_openssl.cc
|
| +++ b/crypto/ec_private_key_openssl.cc
|
| @@ -4,15 +4,15 @@
|
|
|
| #include "crypto/ec_private_key.h"
|
|
|
| -#include <openssl/ec.h>
|
| -#include <openssl/evp.h>
|
| -#include <openssl/pkcs12.h>
|
| -#include <openssl/x509.h>
|
| -
|
| #include "base/logging.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "crypto/openssl_util.h"
|
| #include "crypto/scoped_openssl_types.h"
|
| +#include "third_party/boringssl/src/include/openssl/ec_key.h"
|
| +#include "third_party/boringssl/src/include/openssl/evp.h"
|
| +#include "third_party/boringssl/src/include/openssl/obj.h"
|
| +#include "third_party/boringssl/src/include/openssl/pkcs12.h"
|
| +#include "third_party/boringssl/src/include/openssl/x509.h"
|
|
|
| namespace crypto {
|
|
|
|
|