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

Unified Diff: net/socket/ssl_server_socket_unittest.cc

Issue 274783002: Implement SSL server socket over OpenSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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/socket/ssl_server_socket_unittest.cc
diff --git a/net/socket/ssl_server_socket_unittest.cc b/net/socket/ssl_server_socket_unittest.cc
index 92d2efcb01244ba4c677bcc2d99d3a6790d50d20..5372f3a6ccbcdf9360c02af212ea8b5dabc0d9b0 100644
--- a/net/socket/ssl_server_socket_unittest.cc
+++ b/net/socket/ssl_server_socket_unittest.cc
@@ -361,8 +361,7 @@ class SSLServerSocketTest : public PlatformTest {
scoped_ptr<net::TransportSecurityState> transport_security_state_;
};
-// SSLServerSocket is only implemented using NSS.
-#if defined(USE_NSS) || defined(OS_WIN) || defined(OS_MACOSX)
+#if defined(USE_NSS) || defined(USE_OPENSSL) || defined(OS_WIN) || defined(OS_MACOSX)
Ryan Sleevi 2014/05/12 01:35:25 This whole #ifdef should be removed if it's now su
byungchul 2014/05/12 18:25:23 Done.
// This test only executes creation of client and server sockets. This is to
// test that creation of sockets doesn't crash and have minimal code to run
« net/socket/ssl_server_socket_openssl.cc ('K') | « net/socket/ssl_server_socket_openssl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698