Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Unified Diff: nss/lib/certdb/genname.h

Issue 16132005: Allow NSS to be built with NO_NSPR_10_SUPPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « nss/lib/certdb/crl.c ('k') | nss/lib/certdb/genname.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/certdb/genname.h
===================================================================
--- nss/lib/certdb/genname.h (revision 203524)
+++ nss/lib/certdb/genname.h (working copy)
@@ -18,20 +18,20 @@
extern const SEC_ASN1Template CERT_GeneralNamesTemplate[];
extern SECItem **
-cert_EncodeGeneralNames(PRArenaPool *arena, CERTGeneralName *names);
+cert_EncodeGeneralNames(PLArenaPool *arena, CERTGeneralName *names);
extern CERTGeneralName *
-cert_DecodeGeneralNames(PRArenaPool *arena, SECItem **encodedGenName);
+cert_DecodeGeneralNames(PLArenaPool *arena, SECItem **encodedGenName);
extern SECStatus
cert_DestroyGeneralNames(CERTGeneralName *name);
extern SECStatus
-cert_EncodeNameConstraints(CERTNameConstraints *constraints, PRArenaPool *arena,
+cert_EncodeNameConstraints(CERTNameConstraints *constraints, PLArenaPool *arena,
SECItem *dest);
extern CERTNameConstraints *
-cert_DecodeNameConstraints(PRArenaPool *arena, const SECItem *encodedConstraints);
+cert_DecodeNameConstraints(PLArenaPool *arena, const SECItem *encodedConstraints);
extern CERTGeneralName *
cert_CombineNamesLists(CERTGeneralName *list1, CERTGeneralName *list2);
@@ -51,7 +51,7 @@
CERT_CompareGeneralName(CERTGeneralName *a, CERTGeneralName *b);
SECStatus
-CERT_CopyGeneralName(PRArenaPool *arena,
+CERT_CopyGeneralName(PLArenaPool *arena,
CERTGeneralName *dest,
CERTGeneralName *src);
@@ -74,7 +74,7 @@
void *
CERT_GetGeneralNameFromListByType(CERTGeneralNameList *list,
CERTGeneralNameType type,
- PRArenaPool *arena);
+ PLArenaPool *arena);
/* Adds a name to the tail of the list */
void
@@ -98,7 +98,7 @@
CERT_CompareNameSpace(CERTCertificate *cert,
CERTGeneralName *namesList,
CERTCertificate **certsList,
- PRArenaPool *reqArena,
+ PLArenaPool *reqArena,
CERTCertificate **pBadCert);
SEC_END_PROTOS
« no previous file with comments | « nss/lib/certdb/crl.c ('k') | nss/lib/certdb/genname.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698