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

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

Issue 867063004: [Slimming Paint] Paint the inspector overlay with GraphicsLayer DisplayList. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 9f482fd2d6cdae24f891077fcf44354c43793826..f1c5270ea13fa72360324a21ef31c5490015af40 100644
--- a/Source/platform/graphics/paint/DisplayItem.cpp
+++ b/Source/platform/graphics/paint/DisplayItem.cpp
@@ -44,8 +44,10 @@ static WTF::String drawingTypeAsDebugString(DisplayItem::Type type)
case DisplayItem::BoxDecorationBackground: return "DrawingBoxDecorationBackground";
case DisplayItem::Caret: return "DrawingCaret";
case DisplayItem::ColumnRules: return "DrawingColumnRules";
+ case DisplayItem::DebugRedFill: return "DrawingDebugRedFill";
case DisplayItem::DragImage: return "DrawingDragImage";
case DisplayItem::LinkHighlight: return "DrawingLinkHighlight";
+ case DisplayItem::PageOverlay: return "PageOverlay";
case DisplayItem::PageWidgetDelegateBackgroundFallback: return "DrawingPageWidgetDelegateBackgroundFallback";
case DisplayItem::Resizer: return "DrawingResizer";
case DisplayItem::SVGFilter: return "DrawingSVGFilter";
@@ -55,7 +57,6 @@ static WTF::String drawingTypeAsDebugString(DisplayItem::Type type)
case DisplayItem::ScrollbarVertical: return "DrawingScrollbarVertical";
case DisplayItem::VideoBitmap: return "DrawingVideoBitmap";
case DisplayItem::ViewBackground: return "DrawingViewBackground";
- case DisplayItem::DebugRedFill: return "DrawingDebugRedFill";
default:
ASSERT_NOT_REACHED();
return "Unknown";

Powered by Google App Engine
This is Rietveld 408576698