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

Unified Diff: third_party/WebKit/Source/wtf/build_config.h

Issue 2386843002: reflow comments in wtf (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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 | « third_party/WebKit/Source/wtf/WTF.cpp ('k') | third_party/WebKit/Source/wtf/dtoa.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/build_config.h
diff --git a/third_party/WebKit/Source/wtf/build_config.h b/third_party/WebKit/Source/wtf/build_config.h
index bc2c370621c0824447fbc3677f537b05ad4e9fb1..5d0b90dd58a53ea370b24a0a13965eee7ac8615d 100644
--- a/third_party/WebKit/Source/wtf/build_config.h
+++ b/third_party/WebKit/Source/wtf/build_config.h
@@ -27,15 +27,19 @@
#include "build/build_config.h"
#include "wtf/Compiler.h"
-/* ==== Platform adaptation macros: these describe properties of the target environment. ==== */
+/* ==== Platform adaptation macros: these describe properties of the target
+ * environment. ==== */
-/* HAVE() - specific system features (headers, functions or similar) that are present or not */
+/* HAVE() - specific system features (headers, functions or similar) that are
+ * present or not */
#define HAVE(WTF_FEATURE) (defined HAVE_##WTF_FEATURE && HAVE_##WTF_FEATURE)
-/* OS() - underlying operating system; only to be used for mandated low-level services like
+/* OS() - underlying operating system; only to be used for mandated low-level
+ services like
virtual memory, not to choose a GUI toolkit */
#define OS(WTF_FEATURE) (defined OS_##WTF_FEATURE && OS_##WTF_FEATURE)
-/* ==== Policy decision macros: these define policy choices for a particular port. ==== */
+/* ==== Policy decision macros: these define policy choices for a particular
+ * port. ==== */
/* USE() - use a particular third-party library or optional OS service */
#define USE(WTF_FEATURE) \
@@ -44,7 +48,8 @@
#define ENABLE(WTF_FEATURE) \
(defined ENABLE_##WTF_FEATURE && ENABLE_##WTF_FEATURE)
-/* There is an assumption in the project that either OS(WIN) or OS(POSIX) is set. */
+/* 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
« no previous file with comments | « third_party/WebKit/Source/wtf/WTF.cpp ('k') | third_party/WebKit/Source/wtf/dtoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698