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

Unified Diff: root_certificates.cc

Issue 1837603002: Add io disable check (Closed) Base URL: https://github.com/dart-lang/root_certificates.git@master
Patch Set: Created 4 years, 9 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:
Download patch
« no previous file with comments | « codereview.settings ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: root_certificates.cc
diff --git a/root_certificates.cc b/root_certificates.cc
index 375f7ffa8b4bf08bdebd3b68e7c2316b6e5c76a0..c314de598ce7af1b2ce9bec335e3ed6aa1099656 100644
--- a/root_certificates.cc
+++ b/root_certificates.cc
@@ -6,7 +6,7 @@
* fetched June 29, 2015, and converted to PEM format and to a C char array.
*/
-#if !defined(DART_IO_SECURE_SOCKET_DISABLED)
+#if !defined(DART_IO_DISABLED) && !defined(DART_IO_SECURE_SOCKET_DISABLED)
#include "platform/globals.h"
#if !defined(TARGET_OS_MACOS) && !defined(TARGET_OS_ANDROID)
@@ -20628,4 +20628,5 @@ unsigned int root_certificates_pem_length = 247225;
#endif // !defined(TARGET_OS_MACOS) && !defined(TARGET_OS_ANDROID)
-#endif // !defined(DART_IO_SECURE_SOCKET_DISABLED)
+#endif // !defined(DART_IO_DISABLED) &&
+ // !defined(DART_IO_SECURE_SOCKET_DISABLED)
« no previous file with comments | « codereview.settings ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698