| Index: components/webcrypto/algorithms/aes_cbc.cc
|
| diff --git a/components/webcrypto/algorithms/aes_cbc.cc b/components/webcrypto/algorithms/aes_cbc.cc
|
| index 057ee7285560ec351674d409f9bba08633d5ef1b..c9e941aa7ee92f636d0dc84e5e4e8c0853fb35aa 100644
|
| --- a/components/webcrypto/algorithms/aes_cbc.cc
|
| +++ b/components/webcrypto/algorithms/aes_cbc.cc
|
| @@ -2,8 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <openssl/aes.h>
|
| -#include <openssl/cipher.h>
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| @@ -17,6 +15,8 @@
|
| #include "components/webcrypto/status.h"
|
| #include "crypto/openssl_util.h"
|
| #include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
|
| +#include "third_party/boringssl/src/include/openssl/aes.h"
|
| +#include "third_party/boringssl/src/include/openssl/cipher.h"
|
|
|
| namespace webcrypto {
|
|
|
|
|