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

Unified Diff: net/third_party/nss/ssl/sslimpl.h

Issue 10539144: Always initialize session cache locks lazily. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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
Index: net/third_party/nss/ssl/sslimpl.h
===================================================================
--- net/third_party/nss/ssl/sslimpl.h (revision 142005)
+++ net/third_party/nss/ssl/sslimpl.h (working copy)
@@ -1374,8 +1374,6 @@
extern void ssl_ResetSecurityInfo(sslSecurityInfo *sec, PRBool doMemset);
extern void ssl_DestroySecurityInfo(sslSecurityInfo *sec);
-extern sslSocket * ssl_DupSocket(sslSocket *old);
-
extern void ssl_PrintBuf(sslSocket *ss, const char *msg, const void *cp, int len);
extern void ssl_DumpMsg(sslSocket *ss, unsigned char *bp, unsigned len);
@@ -1819,10 +1817,8 @@
extern SECStatus ssl_FreeSymWrapKeysLock(void);
-extern SECStatus ssl_InitSessionCacheLocks(PRBool lazyInit);
+extern SECStatus ssl_InitSessionCacheLocks(void);
-extern SECStatus ssl_FreeSessionCacheLocks(void);
-
/***************** platform client auth ****************/
#ifdef NSS_PLATFORM_CLIENT_AUTH

Powered by Google App Engine
This is Rietveld 408576698