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

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

Issue 892293002: First version of new merge algorithm (not enabled yet) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove scope-related code (accidentally mixed in this CL) Created 5 years, 11 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: Source/platform/graphics/paint/DisplayItem.cpp
diff --git a/Source/platform/graphics/paint/DisplayItem.cpp b/Source/platform/graphics/paint/DisplayItem.cpp
index fb40ca4d6a64fd828ee400a439ec82eea245af17..80ac325b259cc6f990d492d79ae3d09cbae471c4 100644
--- a/Source/platform/graphics/paint/DisplayItem.cpp
+++ b/Source/platform/graphics/paint/DisplayItem.cpp
@@ -103,6 +103,10 @@ WTF::String DisplayItem::typeAsDebugString(Type type)
if (isEndScrollType(type))
return "End" + typeAsDebugString(endScrollTypeToScrollType(type));
+ PAINT_PHASE_BASED_DEBUG_STRINGS(SubtreeCached);
+ PAINT_PHASE_BASED_DEBUG_STRINGS(BeginSubtree);
+ PAINT_PHASE_BASED_DEBUG_STRINGS(EndSubtree);
+
switch (type) {
case BeginFilter: return "BeginFilter";
case EndFilter: return "EndFilter";

Powered by Google App Engine
This is Rietveld 408576698