| 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 4587609f29b435bcf0e8fc6746f5a71cf2bf893f..bc2c370621c0824447fbc3677f537b05ad4e9fb1 100644
|
| --- a/third_party/WebKit/Source/wtf/build_config.h
|
| +++ b/third_party/WebKit/Source/wtf/build_config.h
|
| @@ -30,7 +30,7 @@
|
| /* ==== Platform adaptation macros: these describe properties of the target environment. ==== */
|
|
|
| /* HAVE() - specific system features (headers, functions or similar) that are present or not */
|
| -#define HAVE(WTF_FEATURE) (defined HAVE_##WTF_FEATURE && HAVE_##WTF_FEATURE)
|
| +#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
|
| virtual memory, not to choose a GUI toolkit */
|
| #define OS(WTF_FEATURE) (defined OS_##WTF_FEATURE && OS_##WTF_FEATURE)
|
| @@ -38,13 +38,15 @@
|
| /* ==== 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) (defined WTF_USE_##WTF_FEATURE && WTF_USE_##WTF_FEATURE)
|
| +#define USE(WTF_FEATURE) \
|
| + (defined WTF_USE_##WTF_FEATURE && WTF_USE_##WTF_FEATURE)
|
| /* ENABLE() - turn on a specific feature of WebKit */
|
| -#define ENABLE(WTF_FEATURE) (defined ENABLE_##WTF_FEATURE && ENABLE_##WTF_FEATURE)
|
| +#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. */
|
| #if !OS(WIN) && !OS(POSIX)
|
| #error Either OS(WIN) or OS(POSIX) needs to be set.
|
| #endif
|
|
|
| -#endif // WTF_build_config_h
|
| +#endif // WTF_build_config_h
|
|
|