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

Side by Side Diff: nspr/pr/include/prinit.h

Issue 200653003: Update to NSPR 4.10.4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 6 years, 9 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
« no previous file with comments | « nspr/pr/include/pratom.h ('k') | nspr/pr/include/private/primpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public 2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 5
6 #ifndef prinit_h___ 6 #ifndef prinit_h___
7 #define prinit_h___ 7 #define prinit_h___
8 8
9 #include "prthread.h" 9 #include "prthread.h"
10 #include "prtypes.h" 10 #include "prtypes.h"
(...skipping 13 matching lines...) Expand all
24 #define PR_NAME "NSPR" 24 #define PR_NAME "NSPR"
25 25
26 /* 26 /*
27 ** NSPR's version is used to determine the likelihood that the version you 27 ** NSPR's version is used to determine the likelihood that the version you
28 ** used to build your component is anywhere close to being compatible with 28 ** used to build your component is anywhere close to being compatible with
29 ** what is in the underlying library. 29 ** what is in the underlying library.
30 ** 30 **
31 ** The format of the version string is 31 ** The format of the version string is
32 ** "<major version>.<minor version>[.<patch level>] [<Beta>]" 32 ** "<major version>.<minor version>[.<patch level>] [<Beta>]"
33 */ 33 */
34 #define PR_VERSION "4.10.3" 34 #define PR_VERSION "4.10.4"
35 #define PR_VMAJOR 4 35 #define PR_VMAJOR 4
36 #define PR_VMINOR 10 36 #define PR_VMINOR 10
37 #define PR_VPATCH 3 37 #define PR_VPATCH 4
38 #define PR_BETA PR_FALSE 38 #define PR_BETA PR_FALSE
39 39
40 /* 40 /*
41 ** PRVersionCheck 41 ** PRVersionCheck
42 ** 42 **
43 ** The basic signature of the function that is called to provide version 43 ** The basic signature of the function that is called to provide version
44 ** checking. The result will be a boolean that indicates the likelihood 44 ** checking. The result will be a boolean that indicates the likelihood
45 ** that the underling library will perform as the caller expects. 45 ** that the underling library will perform as the caller expects.
46 ** 46 **
47 ** The only argument is a string, which should be the verson identifier 47 ** The only argument is a string, which should be the verson identifier
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 NSPR_API(PRStatus) PR_CallOnceWithArg( 206 NSPR_API(PRStatus) PR_CallOnceWithArg(
207 PRCallOnceType *once, 207 PRCallOnceType *once,
208 PRCallOnceWithArgFN func, 208 PRCallOnceWithArgFN func,
209 void *arg 209 void *arg
210 ); 210 );
211 211
212 212
213 PR_END_EXTERN_C 213 PR_END_EXTERN_C
214 214
215 #endif /* prinit_h___ */ 215 #endif /* prinit_h___ */
OLDNEW
« no previous file with comments | « nspr/pr/include/pratom.h ('k') | nspr/pr/include/private/primpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698