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

Side by Side Diff: Source/platform/graphics/paint/DisplayItem.cpp

Issue 871983003: [Slimming Paint] Implement deferred SVG filters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup, and update expectation 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "platform/graphics/paint/DisplayItem.h" 6 #include "platform/graphics/paint/DisplayItem.h"
7 7
8 namespace blink { 8 namespace blink {
9 9
10 #ifndef NDEBUG 10 #ifndef NDEBUG
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 case EndFloatClip: return "EndFloatClip"; 70 case EndFloatClip: return "EndFloatClip";
71 case BeginClipPath: return "BeginClipPath"; 71 case BeginClipPath: return "BeginClipPath";
72 case EndClipPath: return "EndClipPath"; 72 case EndClipPath: return "EndClipPath";
73 case VideoBitmap: return "VideoBitmap"; 73 case VideoBitmap: return "VideoBitmap";
74 case ImageBitmap: return "ImageBitmap"; 74 case ImageBitmap: return "ImageBitmap";
75 case DragImage: return "DragImage"; 75 case DragImage: return "DragImage";
76 case LinkHighlight: return "LinkHighlight"; 76 case LinkHighlight: return "LinkHighlight";
77 case PageWidgetDelegateClip: return "PageWidgetDelegateClip"; 77 case PageWidgetDelegateClip: return "PageWidgetDelegateClip";
78 case PageWidgetDelegateBackgroundFallback: return "PageWidgetDelegateBackgro undFallback"; 78 case PageWidgetDelegateBackgroundFallback: return "PageWidgetDelegateBackgro undFallback";
79 case ViewBackground: return "ViewBackground"; 79 case ViewBackground: return "ViewBackground";
80 case SVGFilter: return "SVGFilter";
80 } 81 }
81 ASSERT_NOT_REACHED(); 82 ASSERT_NOT_REACHED();
82 return "Unknown"; 83 return "Unknown";
83 } 84 }
84 85
85 WTF::String DisplayItem::asDebugString() const 86 WTF::String DisplayItem::asDebugString() const
86 { 87 {
87 WTF::StringBuilder stringBuilder; 88 WTF::StringBuilder stringBuilder;
88 stringBuilder.append('{'); 89 stringBuilder.append('{');
89 dumpPropertiesAsDebugString(stringBuilder); 90 dumpPropertiesAsDebugString(stringBuilder);
(...skipping 12 matching lines...) Expand all
102 stringBuilder.append(", "); 103 stringBuilder.append(", ");
103 } 104 }
104 stringBuilder.append("type: \""); 105 stringBuilder.append("type: \"");
105 stringBuilder.append(typeAsDebugString(type())); 106 stringBuilder.append(typeAsDebugString(type()));
106 stringBuilder.append('"'); 107 stringBuilder.append('"');
107 } 108 }
108 109
109 #endif 110 #endif
110 111
111 } // namespace blink 112 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698