Index: net/socket/nss_ssl_util.h |
diff --git a/net/socket/nss_ssl_util.h b/net/socket/nss_ssl_util.h |
index 6c956610218ae91225ef20548e6f3b8134a3c5f0..637406fd94b91a105257b401621f87b1bacc44b9 100644 |
--- a/net/socket/nss_ssl_util.h |
+++ b/net/socket/nss_ssl_util.h |
@@ -8,25 +8,15 @@ |
#ifndef NET_SOCKET_NSS_SSL_UTIL_H_ |
#define NET_SOCKET_NSS_SSL_UTIL_H_ |
-#include <prerror.h> |
+#include "net/base/net_export.h" |
namespace net { |
-class BoundNetLog; |
- |
-// Initalize NSS SSL library. |
+// Initialize NSS SSL library. |
Wez
2012/06/12 17:27:13
Can you clarify what level of initialization this
Ryan Sleevi
2012/06/12 17:45:29
Yup. We've had the style discussion as to whether
|
void EnsureNSSSSLInit(); |
-// Log a failed NSS funcion call. |
-void LogFailedNSSFunction(const BoundNetLog& net_log, |
- const char* function, |
- const char* param); |
- |
-// Map network error code to NSS error code. |
-PRErrorCode MapErrorToNSS(int result); |
- |
-// Map NSS error code to network error code. |
-int MapNSSError(PRErrorCode err); |
+// Initialize NSS SSL server sockets support. |
wtc
2012/06/12 18:27:38
We should document why this needs to be initialize
|
+NET_EXPORT void EnsureNSSSSLServerInit(); |
} // namespace net |