| 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 c786690d51fd5f3735c402ca1d490b9f0af14640..73f3d96e3810ea043c201c3acda071c2fa4b1985 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
|
| @@ -183,8 +183,6 @@ WTF::String DisplayItem::typeAsDebugString(Type type)
|
| {
|
| if (isDrawingType(type))
|
| return drawingTypeAsDebugString(type);
|
| - if (isCachedDrawingType(type))
|
| - return "Cached" + drawingTypeAsDebugString(cachedDrawingTypeToDrawingType(type));
|
|
|
| if (isForeignLayerType(type))
|
| return foreignLayerTypeAsDebugString(type);
|
| @@ -222,7 +220,6 @@ WTF::String DisplayItem::typeAsDebugString(Type type)
|
| DEBUG_STRING_CASE(EndClipPath);
|
| DEBUG_STRING_CASE(Subsequence);
|
| DEBUG_STRING_CASE(EndSubsequence);
|
| - DEBUG_STRING_CASE(CachedSubsequence);
|
| DEBUG_STRING_CASE(UninitializedType);
|
| DEFAULT_CASE;
|
| }
|
|
|