| 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 673c3661fcf3386034932a4c241aa0cfa5bad553..9c5f45f8643b40880987c073b1dc0a81c65f8daa 100644
|
| --- a/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
|
| +++ b/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
|
| @@ -24,18 +24,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) \
|
|
|