Chromium Code Reviews| Index: runtime/bin/secure_socket.h |
| diff --git a/runtime/bin/secure_socket.h b/runtime/bin/secure_socket.h |
| index 83bf34d0ae83b32e765cff5c738df8a0cd6c6af5..da4f78ff87d82ee0eaff10fe4599445bb6a9792b 100644 |
| --- a/runtime/bin/secure_socket.h |
| +++ b/runtime/bin/secure_socket.h |
| @@ -10,17 +10,12 @@ |
| #endif |
| #include "platform/globals.h" |
| -#if defined(HOST_OS_ANDROID) || defined(HOST_OS_LINUX) || \ |
| - defined(HOST_OS_WINDOWS) || defined(HOST_OS_FUCHSIA) |
| -#include "bin/secure_socket_boringssl.h" |
| -#elif defined(HOST_OS_MACOS) |
| -#if HOST_OS_IOS |
| -#include "bin/secure_socket_ios.h" |
| -#else // HOST_OS_IOS |
| -#include "bin/secure_socket_macos.h" |
| -#endif // HOST_OS_IOS |
| -#else |
| -#error Unknown target os. |
| -#endif |
| + |
| +#include "bin/secure_socket_filter.h" |
| +#include "bin/security_context.h" |
| + |
| +const bool SSL_LOG_STATUS = false; |
|
zra
2017/06/02 22:56:24
Probably move these to secure_socket_utils.h
bkonyi
2017/06/05 20:25:51
Done.
|
| +const bool SSL_LOG_DATA = false; |
| +const bool SSL_LOG_CERTS = false; |
| #endif // RUNTIME_BIN_SECURE_SOCKET_H_ |