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 cb0b833324af5781e97897e9b199f10424c64365..3f2bee555a21289e7f8942eb7d984ee4fbd6d6db 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp |
@@ -185,8 +185,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); |
@@ -224,7 +222,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; |
} |