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

Side by Side Diff: mozilla/security/nss/lib/pki/pkitm.h

Issue 11359091: Update NSS to NSS 3.14 pre-release snapshot 2012-06-26 01:00:00 PDT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Remove the RCS Id from nss-shvfy-const.patch Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* This Source Code Form is subject to the terms of the Mozilla Public 1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 4
5 #ifndef PKITM_H 5 #ifndef PKITM_H
6 #define PKITM_H 6 #define PKITM_H
7 7
8 #ifdef DEBUG 8 #ifdef DEBUG
9 static const char PKITM_CVS_ID[] = "@(#) $RCSfile: pkitm.h,v $ $Revision: 1.17 $ $Date: 2012/07/27 21:41:52 $"; 9 static const char PKITM_CVS_ID[] = "@(#) $RCSfile: pkitm.h,v $ $Revision: 1.16 $ $Date: 2012/04/25 14:50:07 $";
10 #endif /* DEBUG */ 10 #endif /* DEBUG */
11 11
12 /* 12 /*
13 * pkitm.h 13 * pkitm.h
14 * 14 *
15 * This file contains PKI-module specific types. 15 * This file contains PKI-module specific types.
16 */ 16 */
17 17
18 #ifndef BASET_H 18 #ifndef BASET_H
19 #include "baset.h" 19 #include "baset.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 PRStatus (* crl)(NSSCRL *crl, void *arg); 80 PRStatus (* crl)(NSSCRL *crl, void *arg);
81 PRStatus (* pvkey)(NSSPrivateKey *vk, void *arg); 81 PRStatus (* pvkey)(NSSPrivateKey *vk, void *arg);
82 PRStatus (* pbkey)(NSSPublicKey *bk, void *arg); 82 PRStatus (* pbkey)(NSSPublicKey *bk, void *arg);
83 } func; 83 } func;
84 void *arg; 84 void *arg;
85 } nssPKIObjectCallback; 85 } nssPKIObjectCallback;
86 86
87 PR_END_EXTERN_C 87 PR_END_EXTERN_C
88 88
89 #endif /* PKITM_H */ 89 #endif /* PKITM_H */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698