diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-23 22:22:53 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-23 22:22:53 +0000 |
commit | e8c10cb3de110ccdcdc163813f7996cf5d1014bc (patch) | |
tree | 132d740bd9795ca7bfe8d7d360de08b3b056650b /crypto | |
parent | 3893a8feb16b0f4ece91181a7635cacb375ff72a (diff) | |
download | chromium_src-e8c10cb3de110ccdcdc163813f7996cf5d1014bc.zip chromium_src-e8c10cb3de110ccdcdc163813f7996cf5d1014bc.tar.gz chromium_src-e8c10cb3de110ccdcdc163813f7996cf5d1014bc.tar.bz2 |
Add ScopedPK11SlotList to scoped_nss_types.h
BUG=none
Review URL: https://codereview.chromium.org/33003004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230524 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/scoped_nss_types.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/scoped_nss_types.h b/crypto/scoped_nss_types.h index da90fea..21f684f 100644 --- a/crypto/scoped_nss_types.h +++ b/crypto/scoped_nss_types.h @@ -38,6 +38,9 @@ typedef scoped_ptr_malloc< typedef scoped_ptr_malloc< PK11SlotInfo, NSSDestroyer<PK11SlotInfo, PK11_FreeSlot> > ScopedPK11Slot; typedef scoped_ptr_malloc< + PK11SlotList, NSSDestroyer<PK11SlotList, + PK11_FreeSlotList> > ScopedPK11SlotList; +typedef scoped_ptr_malloc< PK11SymKey, NSSDestroyer<PK11SymKey, PK11_FreeSymKey> > ScopedPK11SymKey; typedef scoped_ptr_malloc< SECKEYPublicKey, NSSDestroyer<SECKEYPublicKey, SECKEY_DestroyPublicKey> > |