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

Side by Side Diff: net/third_party/nss/ssl/bodge/secitem_array.h

Issue 14522022: Update NSS libSSL to NSS_3_15_BETA2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 #ifndef _SECITEM_ARRAY_H_
6 #define _SECITEM_ARRAY_H_
7
8 #include "utilrename.h"
9
10 #include "plarena.h"
11 #include "seccomon.h"
12 #include "../sslt.h"
13
14 SEC_BEGIN_PROTOS
15
16 extern SECItemArray *SECITEM_AllocArray(PLArenaPool *arena,
17 SECItemArray *array,
18 unsigned int len);
19 extern SECItemArray *SECITEM_DupArray(PLArenaPool *arena, const SECItemArray *fr om);
20 extern void SECITEM_FreeArray(SECItemArray *array, PRBool freeit);
21 extern void SECITEM_ZfreeArray(SECItemArray *array, PRBool freeit);
22
23 SEC_END_PROTOS
24
25 #endif /* _SECITEM_ARRAY_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698