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

Unified Diff: Source/config.h

Issue 23895006: Make the Unix editing behavior the default (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase + #error Created 7 years, 3 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
« no previous file with comments | « no previous file | Source/core/page/Settings.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/config.h
diff --git a/Source/config.h b/Source/config.h
index 3eb6b284b0a04c43c20bc17ce74675f477ece2f3..4e95ae78130ff4e6633d1e0407b34e4dd3c31ba3 100644
--- a/Source/config.h
+++ b/Source/config.h
@@ -88,6 +88,11 @@
#define WTF_OS_POSIX 1
#endif
+/* There is an assumption in the project that either OS(WIN) or OS(POSIX) is set. */
+#if !OS(WIN) && !OS(POSIX)
+#error Either OS(WIN) or OS(POSIX) needs to be set.
+#endif
+
/* Operating environments */
#if OS(ANDROID)
« no previous file with comments | « no previous file | Source/core/page/Settings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698