| Index: third_party/WebKit/Source/wtf/DynamicAnnotations.h
|
| diff --git a/third_party/WebKit/Source/wtf/DynamicAnnotations.h b/third_party/WebKit/Source/wtf/DynamicAnnotations.h
|
| index 7b9fd02b37d36a7fa36347906bdd1f8a55dc5fe5..33e9cd3ff9f381f7c25974c336cc863dc2ae0d49 100644
|
| --- a/third_party/WebKit/Source/wtf/DynamicAnnotations.h
|
| +++ b/third_party/WebKit/Source/wtf/DynamicAnnotations.h
|
| @@ -45,14 +45,16 @@
|
| * The dynamic analysis tools can intercept these functions and replace them
|
| * with their own implementations.
|
| *
|
| - * See http://code.google.com/p/data-race-test/wiki/DynamicAnnotations for more information.
|
| + * See http://code.google.com/p/data-race-test/wiki/DynamicAnnotations for more
|
| + * information.
|
| */
|
|
|
| #include "wtf/WTFExport.h"
|
| #include "wtf/build_config.h"
|
|
|
| #if USE(DYNAMIC_ANNOTATIONS)
|
| -/* Tell data race detector that we're not interested in reports on the given address range. */
|
| +/* Tell data race detector that we're not interested in reports on the given
|
| + * address range. */
|
| #define WTF_ANNOTATE_BENIGN_RACE_SIZED(address, size, description) \
|
| WTFAnnotateBenignRaceSized(__FILE__, __LINE__, address, size, description)
|
| #define WTF_ANNOTATE_BENIGN_RACE(pointer, description) \
|
|
|