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

Unified Diff: Source/config.h

Issue 23600014: Rename OS(UNIX) to OS(POSIX) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/inspector/InspectorOverlay.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 d0190c87eb8ad480597151422f956e0f816927f0..991f2f95cb936dd7f202009e7331a7bbb2836aac 100644
--- a/Source/config.h
+++ b/Source/config.h
@@ -81,7 +81,7 @@
#define WTF_OS_WIN 1
#endif
-/* OS(UNIX) - Any Unix-like system */
+/* OS(POSIX) - Any Unix-like system */
#if OS(ANDROID) \
|| OS(MACOSX) \
|| OS(FREEBSD) \
@@ -91,7 +91,7 @@
|| defined(unix) \
|| defined(__unix) \
|| defined(__unix__)
-#define WTF_OS_UNIX 1
+#define WTF_OS_POSIX 1
#endif
/* Operating environments */
@@ -120,12 +120,12 @@
#define HAVE_ACCESSIBILITY 1
#endif /* !defined(HAVE_ACCESSIBILITY) */
-#if OS(UNIX)
+#if OS(POSIX)
#define HAVE_MMAP 1
#define HAVE_SIGNAL_H 1
#define HAVE_SYS_TIME_H 1
#define WTF_USE_PTHREADS 1
-#endif /* OS(UNIX) */
+#endif /* OS(POSIX) */
#if !defined(HAVE_VASPRINTF)
#if !COMPILER(MSVC)
« no previous file with comments | « no previous file | Source/core/inspector/InspectorOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698