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

Side by Side Diff: nss/mozilla/nsprpub/pr/include/prinit.h

Issue 3135002: Update to NSS 3.12.7 and NSPR 4.8.6.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 4 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
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 /* ***** BEGIN LICENSE BLOCK ***** 2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 * 4 *
5 * The contents of this file are subject to the Mozilla Public License Version 5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with 6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at 7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/ 8 * http://www.mozilla.org/MPL/
9 * 9 *
10 * Software distributed under the License is distributed on an "AS IS" basis, 10 * Software distributed under the License is distributed on an "AS IS" basis,
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #define PR_NAME "NSPR" 56 #define PR_NAME "NSPR"
57 57
58 /* 58 /*
59 ** NSPR's version is used to determine the likelihood that the version you 59 ** NSPR's version is used to determine the likelihood that the version you
60 ** used to build your component is anywhere close to being compatible with 60 ** used to build your component is anywhere close to being compatible with
61 ** what is in the underlying library. 61 ** what is in the underlying library.
62 ** 62 **
63 ** The format of the version string is 63 ** The format of the version string is
64 ** "<major version>.<minor version>[.<patch level>] [<Beta>]" 64 ** "<major version>.<minor version>[.<patch level>] [<Beta>]"
65 */ 65 */
66 #define PR_VERSION "4.8.4" 66 #define PR_VERSION "4.8.6"
67 #define PR_VMAJOR 4 67 #define PR_VMAJOR 4
68 #define PR_VMINOR 8 68 #define PR_VMINOR 8
69 #define PR_VPATCH 4 69 #define PR_VPATCH 6
70 #define PR_BETA PR_FALSE 70 #define PR_BETA PR_FALSE
71 71
72 /* 72 /*
73 ** PRVersionCheck 73 ** PRVersionCheck
74 ** 74 **
75 ** The basic signature of the function that is called to provide version 75 ** The basic signature of the function that is called to provide version
76 ** checking. The result will be a boolean that indicates the likelihood 76 ** checking. The result will be a boolean that indicates the likelihood
77 ** that the underling library will perform as the caller expects. 77 ** that the underling library will perform as the caller expects.
78 ** 78 **
79 ** The only argument is a string, which should be the verson identifier 79 ** The only argument is a string, which should be the verson identifier
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 NSPR_API(PRStatus) PR_CallOnceWithArg( 233 NSPR_API(PRStatus) PR_CallOnceWithArg(
234 PRCallOnceType *once, 234 PRCallOnceType *once,
235 PRCallOnceWithArgFN func, 235 PRCallOnceWithArgFN func,
236 void *arg 236 void *arg
237 ); 237 );
238 238
239 239
240 PR_END_EXTERN_C 240 PR_END_EXTERN_C
241 241
242 #endif /* prinit_h___ */ 242 #endif /* prinit_h___ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698