Index: crypto/signature_creator.h |
diff --git a/crypto/signature_creator.h b/crypto/signature_creator.h |
index abd1546164c8db22cddb414979480942ef3efe2c..98329b883a75c4a7046ede6ea436a4741bd9375c 100644 |
--- a/crypto/signature_creator.h |
+++ b/crypto/signature_creator.h |
@@ -13,13 +13,8 @@ |
#include "build/build_config.h" |
#include "crypto/crypto_export.h" |
-#if defined(USE_OPENSSL) |
// Forward declaration for openssl/*.h |
typedef struct env_md_ctx_st EVP_MD_CTX; |
-#elif defined(USE_NSS_CERTS) || defined(OS_WIN) || defined(OS_MACOSX) |
-// Forward declaration. |
-struct SGNContextStr; |
-#endif |
namespace crypto { |
@@ -61,11 +56,7 @@ class CRYPTO_EXPORT SignatureCreator { |
// Private constructor. Use the Create() method instead. |
SignatureCreator(); |
-#if defined(USE_OPENSSL) |
EVP_MD_CTX* sign_context_; |
-#elif defined(USE_NSS_CERTS) || defined(OS_WIN) || defined(OS_MACOSX) |
- SGNContextStr* sign_context_; |
-#endif |
DISALLOW_COPY_AND_ASSIGN(SignatureCreator); |
}; |