| 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);
|
|
|