OLD | NEW |
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 "core/paint/ViewDisplayList.h" | 6 #include "core/paint/ViewDisplayList.h" |
7 | 7 |
8 #include "platform/NotImplemented.h" | 8 #include "platform/NotImplemented.h" |
9 #include "platform/RuntimeEnabledFeatures.h" | 9 #include "platform/RuntimeEnabledFeatures.h" |
10 | 10 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 case DisplayItem::ClipLayerFragmentChildOutline: return "ClipLayerFragmentCh
ildOutline"; | 141 case DisplayItem::ClipLayerFragmentChildOutline: return "ClipLayerFragmentCh
ildOutline"; |
142 case DisplayItem::ClipLayerFragmentOutline: return "ClipLayerFragmentOutline
"; | 142 case DisplayItem::ClipLayerFragmentOutline: return "ClipLayerFragmentOutline
"; |
143 case DisplayItem::ClipLayerFragmentMask: return "ClipLayerFragmentMask"; | 143 case DisplayItem::ClipLayerFragmentMask: return "ClipLayerFragmentMask"; |
144 case DisplayItem::ClipLayerFragmentClippingMask: return "ClipLayerFragmentCl
ippingMask"; | 144 case DisplayItem::ClipLayerFragmentClippingMask: return "ClipLayerFragmentCl
ippingMask"; |
145 case DisplayItem::ClipLayerFragmentParent: return "ClipLayerFragmentParent"; | 145 case DisplayItem::ClipLayerFragmentParent: return "ClipLayerFragmentParent"; |
146 case DisplayItem::ClipLayerFragmentSelection: return "ClipLayerFragmentSelec
tion"; | 146 case DisplayItem::ClipLayerFragmentSelection: return "ClipLayerFragmentSelec
tion"; |
147 case DisplayItem::ClipLayerFragmentChildBlockBackgrounds: return "ClipLayerF
ragmentChildBlockBackgrounds"; | 147 case DisplayItem::ClipLayerFragmentChildBlockBackgrounds: return "ClipLayerF
ragmentChildBlockBackgrounds"; |
148 case DisplayItem::EndClip: return "EndClip"; | 148 case DisplayItem::EndClip: return "EndClip"; |
149 case DisplayItem::BeginFilter: return "BeginFilter"; | 149 case DisplayItem::BeginFilter: return "BeginFilter"; |
150 case DisplayItem::EndFilter: return "EndFilter"; | 150 case DisplayItem::EndFilter: return "EndFilter"; |
| 151 case DisplayItem::TransparencyClip: return "TransparencyClip"; |
151 case DisplayItem::BeginTransparency: return "BeginTransparency"; | 152 case DisplayItem::BeginTransparency: return "BeginTransparency"; |
152 case DisplayItem::EndTransparency: return "EndTransparency"; | 153 case DisplayItem::EndTransparency: return "EndTransparency"; |
153 case ClipBoxChildBlockBackgrounds: return "ClipBoxChildBlockBackgrounds"; | 154 case ClipBoxChildBlockBackgrounds: return "ClipBoxChildBlockBackgrounds"; |
154 case ClipBoxFloat: return "ClipBoxFloat"; | 155 case ClipBoxFloat: return "ClipBoxFloat"; |
155 case ClipBoxForeground: return "ClipBoxForeground"; | 156 case ClipBoxForeground: return "ClipBoxForeground"; |
156 case ClipBoxChildOutlines: return "ClipBoxChildOutlines"; | 157 case ClipBoxChildOutlines: return "ClipBoxChildOutlines"; |
157 case ClipBoxSelection: return "ClipBoxSelection"; | 158 case ClipBoxSelection: return "ClipBoxSelection"; |
158 case ClipBoxCollapsedTableBorders: return "ClipBoxCollapsedTableBorders"; | 159 case ClipBoxCollapsedTableBorders: return "ClipBoxCollapsedTableBorders"; |
159 case ClipBoxTextClip: return "ClipBoxTextClip"; | 160 case ClipBoxTextClip: return "ClipBoxTextClip"; |
160 case ClipBoxClippingMask: return "ClipBoxClippingMask"; | 161 case ClipBoxClippingMask: return "ClipBoxClippingMask"; |
(...skipping 30 matching lines...) Expand all Loading... |
191 } | 192 } |
192 | 193 |
193 void ViewDisplayList::showDebugData() const | 194 void ViewDisplayList::showDebugData() const |
194 { | 195 { |
195 fprintf(stderr, "paint list: [%s]\n", paintListAsDebugString(m_paintList).ut
f8().data()); | 196 fprintf(stderr, "paint list: [%s]\n", paintListAsDebugString(m_paintList).ut
f8().data()); |
196 fprintf(stderr, "new paints: [%s]\n", paintListAsDebugString(m_newPaints).ut
f8().data()); | 197 fprintf(stderr, "new paints: [%s]\n", paintListAsDebugString(m_newPaints).ut
f8().data()); |
197 } | 198 } |
198 #endif | 199 #endif |
199 | 200 |
200 } // namespace blink | 201 } // namespace blink |
OLD | NEW |