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

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

Issue 2307623002: [SPv2] Defer decision of raster invalidation after paint for changes z-index, transform, etc. (Closed)
Patch Set: Remove duplicated spv2 expectation entries Created 4 years, 3 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 90a189d7d8050147aa9ba12b317d552bb8813b92..21144a4f2817e05d02927c48e74a27df3fd5435b 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
@@ -194,9 +194,6 @@ WTF::String DisplayItem::typeAsDebugString(Type type)
if (isEndClipType(type))
return "End" + clipTypeAsDebugString(endClipTypeToClipType(type));
- if (type == kUninitializedType)
- return "UninitializedType";
-
PAINT_PHASE_BASED_DEBUG_STRINGS(FloatClip);
if (isEndFloatClipType(type))
return "End" + typeAsDebugString(endFloatClipTypeToFloatClipType(type));

Powered by Google App Engine
This is Rietveld 408576698