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

Unified Diff: crypto/encryptor.h

Issue 206453002: Introduce USE_OPENSSL_CERTS for certificate handling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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/encryptor.h
diff --git a/crypto/encryptor.h b/crypto/encryptor.h
index bcc647bbc07075e266615ce025e56033b3eac576..ca4d20fa2a619400407999b5dd4b93c0ec353a67 100644
--- a/crypto/encryptor.h
+++ b/crypto/encryptor.h
@@ -13,7 +13,8 @@
#include "build/build_config.h"
#include "crypto/crypto_export.h"
-#if defined(USE_NSS) || defined(OS_WIN) || defined(OS_MACOSX)
+#if !defined(USE_OPENSSL) && \
+ (defined(USE_NSS) || defined(OS_WIN) || defined(OS_MACOSX))
wtc 2014/03/20 21:14:56 This should be written like this: #if defined(USE
haavardm 2014/03/21 13:08:21 That's what I had first actually, but I found it a
Ryan Sleevi 2014/03/21 19:47:51 I think I agree with Wan-Teh, in that I found myse
haavardm 2014/03/24 18:48:52 Hmm.. Looking at it again, I agree. Although it is
haavardm 2014/03/24 18:48:52 Done.
#include "crypto/scoped_nss_types.h"
#endif

Powered by Google App Engine
This is Rietveld 408576698