| 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
 | 
| 
 |