| Index: base/crypto/rsa_private_key.h
|
| diff --git a/base/crypto/rsa_private_key.h b/base/crypto/rsa_private_key.h
|
| index 7f562ecf76a59b8a34f877d799bf187a8b6622ac..ae410e02abc43bf7e25e3ed72df4a5161aa123b3 100644
|
| --- a/base/crypto/rsa_private_key.h
|
| +++ b/base/crypto/rsa_private_key.h
|
| @@ -174,7 +174,6 @@ class RSAPrivateKey {
|
| HCRYPTPROV provider() { return provider_; }
|
| HCRYPTKEY key() { return key_; }
|
| #elif defined(OS_MACOSX)
|
| - CSSM_CSP_HANDLE csp_handle() { return csp_handle_; }
|
| CSSM_KEY_PTR key() { return &key_; }
|
| #endif
|
|
|
| @@ -199,7 +198,6 @@ private:
|
| HCRYPTKEY key_;
|
| #elif defined(OS_MACOSX)
|
| CSSM_KEY key_;
|
| - CSSM_CSP_HANDLE csp_handle_;
|
| #endif
|
|
|
| DISALLOW_COPY_AND_ASSIGN(RSAPrivateKey);
|
|
|