| 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"; | |
| 152 case DisplayItem::BeginTransparency: return "BeginTransparency"; | 151 case DisplayItem::BeginTransparency: return "BeginTransparency"; |
| 153 case DisplayItem::EndTransparency: return "EndTransparency"; | 152 case DisplayItem::EndTransparency: return "EndTransparency"; |
| 154 case ClipBoxChildBlockBackgrounds: return "ClipBoxChildBlockBackgrounds"; | 153 case ClipBoxChildBlockBackgrounds: return "ClipBoxChildBlockBackgrounds"; |
| 155 case ClipBoxFloat: return "ClipBoxFloat"; | 154 case ClipBoxFloat: return "ClipBoxFloat"; |
| 156 case ClipBoxForeground: return "ClipBoxForeground"; | 155 case ClipBoxForeground: return "ClipBoxForeground"; |
| 157 case ClipBoxChildOutlines: return "ClipBoxChildOutlines"; | 156 case ClipBoxChildOutlines: return "ClipBoxChildOutlines"; |
| 158 case ClipBoxSelection: return "ClipBoxSelection"; | 157 case ClipBoxSelection: return "ClipBoxSelection"; |
| 159 case ClipBoxCollapsedTableBorders: return "ClipBoxCollapsedTableBorders"; | 158 case ClipBoxCollapsedTableBorders: return "ClipBoxCollapsedTableBorders"; |
| 160 case ClipBoxTextClip: return "ClipBoxTextClip"; | 159 case ClipBoxTextClip: return "ClipBoxTextClip"; |
| 161 case ClipBoxClippingMask: return "ClipBoxClippingMask"; | 160 case ClipBoxClippingMask: return "ClipBoxClippingMask"; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 192 } | 191 } |
| 193 | 192 |
| 194 void ViewDisplayList::showDebugData() const | 193 void ViewDisplayList::showDebugData() const |
| 195 { | 194 { |
| 196 fprintf(stderr, "paint list: [%s]\n", paintListAsDebugString(m_paintList).ut
f8().data()); | 195 fprintf(stderr, "paint list: [%s]\n", paintListAsDebugString(m_paintList).ut
f8().data()); |
| 197 fprintf(stderr, "new paints: [%s]\n", paintListAsDebugString(m_newPaints).ut
f8().data()); | 196 fprintf(stderr, "new paints: [%s]\n", paintListAsDebugString(m_newPaints).ut
f8().data()); |
| 198 } | 197 } |
| 199 #endif | 198 #endif |
| 200 | 199 |
| 201 } // namespace blink | 200 } // namespace blink |
| OLD | NEW |