| Index: third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
|
| diff --git a/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h b/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
|
| index 6d09740839a83de2dcbf5aa6647cc99e60360355..073a178bf3fefc349470c95f0f7c05d551f70afe 100644
|
| --- a/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
|
| +++ b/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
|
| @@ -31,18 +31,18 @@ namespace blink {
|
| << "\nUpdated:\n" \
|
| << (updated ? (updated)->ToString().Ascii().data() : "null")
|
|
|
| -#define CHECK_PROPERTY_EQ(thing, original, updated) \
|
| - do { \
|
| - DCHECK(!!original == !!updated) << "Property was created or deleted " \
|
| - << "without " << thing \
|
| - << " needing a paint property update." \
|
| - << DUMP_PROPERTIES(original, updated); \
|
| - if (!!original && !!updated) { \
|
| - DCHECK(*original == *updated) << "Property was updated without " \
|
| - << thing \
|
| - << " needing a paint property update." \
|
| - << DUMP_PROPERTIES(original, updated); \
|
| - } \
|
| +#define CHECK_PROPERTY_EQ(thing, original, updated) \
|
| + do { \
|
| + DCHECK(!!original == !!updated) \
|
| + << "Property was created or deleted " \
|
| + << "without " << thing << " needing a paint property update." \
|
| + << DUMP_PROPERTIES(original, updated); \
|
| + if (!!original && !!updated) { \
|
| + DCHECK(*original == *updated) \
|
| + << "Property was updated without " << thing \
|
| + << " needing a paint property update." \
|
| + << DUMP_PROPERTIES(original, updated); \
|
| + } \
|
| } while (0)
|
|
|
| #define DCHECK_FRAMEVIEW_PROPERTY_EQ(original, updated) \
|
|
|