Chromium Code Reviews| Index: base/crypto/encryptor.h |
| diff --git a/base/crypto/encryptor.h b/base/crypto/encryptor.h |
| index 55199d5c917a4246ec9fafd271b786d73612db08..a09c7cdd33b47fc7941f073d16eb8ed285a68d6e 100644 |
| --- a/base/crypto/encryptor.h |
| +++ b/base/crypto/encryptor.h |
| @@ -40,6 +40,12 @@ class Encryptor { |
| #if defined(USE_NSS) |
| ScopedPK11Slot slot_; |
| ScopedSECItem param_; |
| +#elif defined(OS_MACOSX) |
| + bool Crypt(int /*CCOperation*/ op, |
| + const std::string& input, |
| + std::string* output); |
| + |
| + std::string iv_; |
| #endif |
| }; |