Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(605)

Unified Diff: third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) \

Powered by Google App Engine
This is Rietveld 408576698