| Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| index e70e8f369f78318af07d443bea4bc186a3554e3b..81065f171f24ddaba93f6e21386bc0e6aec49282 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| @@ -182,10 +182,6 @@ class PLATFORM_EXPORT DisplayItem {
|
| kEndTransform,
|
| kBeginClipPath,
|
| kEndClipPath,
|
| -
|
| - kSubsequence,
|
| - kEndSubsequence,
|
| -
|
| kUninitializedType,
|
| kTypeLast = kUninitializedType
|
| };
|
| @@ -314,9 +310,7 @@ class PLATFORM_EXPORT DisplayItem {
|
|
|
| DEFINE_PAIRED_CATEGORY_METHODS(Transform3D, transform3D)
|
|
|
| - static bool isCacheableType(Type type) {
|
| - return isDrawingType(type) || type == kSubsequence;
|
| - }
|
| + static bool isCacheableType(Type type) { return isDrawingType(type); }
|
| bool isCacheable() const {
|
| return !skippedCache() && isCacheableType(m_type);
|
| }
|
|
|