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

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: Traverse indices vector Created 5 years, 10 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 945f8ede8bcdfbdb73a733808decc3be155dc49f..63d837b52a4ff383a1f26583b15741189b40d321 100644
--- a/Source/platform/graphics/paint/DisplayItem.cpp
+++ b/Source/platform/graphics/paint/DisplayItem.cpp
@@ -106,6 +106,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