Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(889)

Unified Diff: crypto/rsa_private_key.cc

Issue 2449873005: include boringssl headers from third_party explicitly (Closed)
Patch Set: review comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: crypto/rsa_private_key.cc
diff --git a/crypto/rsa_private_key.cc b/crypto/rsa_private_key.cc
index 19d72438026abd87b08772f3ed2f66a6eb3c5728..075f5e40416bd301a3432fcc573ce74015026598 100644
--- a/crypto/rsa_private_key.cc
+++ b/crypto/rsa_private_key.cc
@@ -4,11 +4,6 @@
#include "crypto/rsa_private_key.h"
-#include <openssl/bn.h>
-#include <openssl/bytestring.h>
-#include <openssl/evp.h>
-#include <openssl/mem.h>
-#include <openssl/rsa.h>
#include <stdint.h>
#include <memory>
@@ -16,6 +11,11 @@
#include "base/logging.h"
#include "crypto/openssl_util.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/evp.h"
+#include "third_party/boringssl/src/include/openssl/mem.h"
+#include "third_party/boringssl/src/include/openssl/rsa.h"
namespace crypto {
« chrome/common/DEPS ('K') | « crypto/rsa_private_key.h ('k') | crypto/secure_hash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698