| Index: crypto/aead.cc
|
| diff --git a/crypto/aead.cc b/crypto/aead.cc
|
| index 1be24cdb88d8463e7458d66b788b66679aeeae1d..a0ef250d83d154adda84d03ab40eee8d6a276238 100644
|
| --- a/crypto/aead.cc
|
| +++ b/crypto/aead.cc
|
| @@ -4,14 +4,14 @@
|
|
|
| #include "crypto/aead.h"
|
|
|
| -#include <openssl/aes.h>
|
| -#include <openssl/evp.h>
|
| #include <stddef.h>
|
| #include <stdint.h>
|
| #include <string>
|
|
|
| #include "base/strings/string_util.h"
|
| #include "crypto/openssl_util.h"
|
| +#include "third_party/boringssl/src/include/openssl/aes.h"
|
| +#include "third_party/boringssl/src/include/openssl/evp.h"
|
|
|
| namespace crypto {
|
|
|
|
|