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

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

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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 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) \

Powered by Google App Engine
This is Rietveld 408576698