| Index: base/crypto/signature_creator.h
|
| diff --git a/base/crypto/signature_creator.h b/base/crypto/signature_creator.h
|
| index 97a6e79a1dd8ff5030108183e1db0193df948de7..a2d5cf68b6afd83f1a55b920f6178fa3a2d12e11 100644
|
| --- a/base/crypto/signature_creator.h
|
| +++ b/base/crypto/signature_creator.h
|
| @@ -8,7 +8,8 @@
|
| #include "build/build_config.h"
|
|
|
| #if defined(USE_NSS)
|
| -#include <cryptoht.h>
|
| +// Forward declaration.
|
| +struct SGNContextStr;
|
| #elif defined(OS_MACOSX)
|
| #include <Security/cssm.h>
|
| #elif defined(OS_WIN)
|
| @@ -46,7 +47,7 @@ class SignatureCreator {
|
| RSAPrivateKey* key_;
|
|
|
| #if defined(USE_NSS)
|
| - SGNContext* sign_context_;
|
| + SGNContextStr* sign_context_;
|
| #elif defined(OS_MACOSX)
|
| CSSM_CSP_HANDLE csp_handle_;
|
| CSSM_CC_HANDLE sig_handle_;
|
|
|