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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp

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/platform/graphics/paint/DisplayItem.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
index ecaa5b611dff33ec6307bc053d22d93670b876e3..048bf2361c2a9c155406d44ed3524e0e465e8353 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
@@ -55,8 +55,9 @@ static WTF::String paintPhaseAsDebugString(int paintPhase) {
#define PAINT_PHASE_BASED_DEBUG_STRINGS(Category) \
if (type >= DisplayItem::k##Category##PaintPhaseFirst && \
type <= DisplayItem::k##Category##PaintPhaseLast) \
- return #Category + paintPhaseAsDebugString( \
- type - DisplayItem::k##Category##PaintPhaseFirst);
+ return #Category + \
+ paintPhaseAsDebugString(type - \
+ DisplayItem::k##Category##PaintPhaseFirst);
#define DEBUG_STRING_CASE(DisplayItemName) \
case DisplayItem::k##DisplayItemName: \
@@ -217,8 +218,9 @@ WTF::String DisplayItem::typeAsDebugString(Type type) {
if (isTransform3DType(type))
return transform3DTypeAsDebugString(type);
if (isEndTransform3DType(type))
- return "End" + transform3DTypeAsDebugString(
- endTransform3DTypeToTransform3DType(type));
+ return "End" +
+ transform3DTypeAsDebugString(
+ endTransform3DTypeToTransform3DType(type));
switch (type) {
DEBUG_STRING_CASE(BeginFilter);

Powered by Google App Engine
This is Rietveld 408576698