Index: net/socket/ssl_client_socket_nss.cc |
diff --git a/net/socket/ssl_client_socket_nss.cc b/net/socket/ssl_client_socket_nss.cc |
index 4a946d8b9ec4b83cea0e6e1f8a77dc4130e7f701..587dd1dcec9c6d7d4e0a10917af594f03f60a63e 100644 |
--- a/net/socket/ssl_client_socket_nss.cc |
+++ b/net/socket/ssl_client_socket_nss.cc |
@@ -3094,7 +3094,7 @@ int SSLClientSocketNSS::Init() { |
EnsureNSSSSLInit(); |
if (!NSS_IsInitialized()) |
return ERR_UNEXPECTED; |
-#if !defined(OS_MACOSX) && !defined(OS_WIN) |
+#if (!defined(OS_MACOSX) && !defined(OS_WIN)) || defined(OS_IOS) |
Ryan Sleevi
2012/11/12 21:45:46
Let's change this to the positive form
#if define
blundell
2012/11/12 21:58:44
Done.
|
if (ssl_config_.cert_io_enabled) { |
// We must call EnsureNSSHttpIOInit() here, on the IO thread, to get the IO |
// loop by MessageLoopForIO::current(). |