| Index: crypto/ec_private_key.cc
|
| diff --git a/crypto/ec_private_key.cc b/crypto/ec_private_key.cc
|
| index 4d7b0f61dca2fdca1eff8217f233987cccde85de..0a2344c2a6661c05ac60ee36e87b24b9aacb8aa5 100644
|
| --- a/crypto/ec_private_key.cc
|
| +++ b/crypto/ec_private_key.cc
|
| @@ -4,15 +4,6 @@
|
|
|
| #include "crypto/ec_private_key.h"
|
|
|
| -#include <openssl/bio.h>
|
| -#include <openssl/bn.h>
|
| -#include <openssl/bytestring.h>
|
| -#include <openssl/ec.h>
|
| -#include <openssl/ec_key.h>
|
| -#include <openssl/evp.h>
|
| -#include <openssl/mem.h>
|
| -#include <openssl/pkcs12.h>
|
| -#include <openssl/x509.h>
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| @@ -20,6 +11,15 @@
|
|
|
| #include "base/logging.h"
|
| #include "crypto/openssl_util.h"
|
| +#include "third_party/boringssl/src/include/openssl/bio.h"
|
| +#include "third_party/boringssl/src/include/openssl/bn.h"
|
| +#include "third_party/boringssl/src/include/openssl/bytestring.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/evp.h"
|
| +#include "third_party/boringssl/src/include/openssl/mem.h"
|
| +#include "third_party/boringssl/src/include/openssl/pkcs12.h"
|
| +#include "third_party/boringssl/src/include/openssl/x509.h"
|
|
|
| namespace crypto {
|
|
|
|
|