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

Unified Diff: runtime/bin/secure_socket.h

Issue 2903743002: Porting SecureSocket to use BoringSSL on OSX (Closed)
Patch Set: Additional cleanup Created 3 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: 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_

Powered by Google App Engine
This is Rietveld 408576698