| Index: crypto/encryptor.h
|
| diff --git a/crypto/encryptor.h b/crypto/encryptor.h
|
| index ec1498b66fc502d5921f0cb067b09340149dc185..8052a9fd5744f8293c1e842d9ace05eff6e46dc4 100644
|
| --- a/crypto/encryptor.h
|
| +++ b/crypto/encryptor.h
|
| @@ -13,7 +13,7 @@
|
| #include "build/build_config.h"
|
| #include "crypto/crypto_export.h"
|
|
|
| -#if defined(USE_NSS) || \
|
| +#if defined(USE_NSS_CERTS) || \
|
| (!defined(USE_OPENSSL) && (defined(OS_WIN) || defined(OS_MACOSX)))
|
| #include "crypto/scoped_nss_types.h"
|
| #endif
|
| @@ -122,7 +122,7 @@ class CRYPTO_EXPORT Encryptor {
|
| const base::StringPiece& input,
|
| std::string* output);
|
| std::string iv_;
|
| -#elif defined(USE_NSS) || defined(OS_WIN) || defined(OS_MACOSX)
|
| +#elif defined(USE_NSS_CERTS) || defined(OS_WIN) || defined(OS_MACOSX)
|
| bool Crypt(PK11Context* context,
|
| const base::StringPiece& input,
|
| std::string* output);
|
|
|