| 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 #ifndef DisplayItem_h | 5 #ifndef DisplayItem_h |
| 6 #define DisplayItem_h | 6 #define DisplayItem_h |
| 7 | 7 |
| 8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.h" |
| 9 #include "platform/graphics/ContiguousContainer.h" | 9 #include "platform/graphics/ContiguousContainer.h" |
| 10 #include "platform/graphics/paint/DisplayItemClient.h" | 10 #include "platform/graphics/paint/DisplayItemClient.h" |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 ClipLayerBackground, | 118 ClipLayerBackground, |
| 119 ClipLayerColumnBounds, | 119 ClipLayerColumnBounds, |
| 120 ClipLayerFilter, | 120 ClipLayerFilter, |
| 121 ClipLayerForeground, | 121 ClipLayerForeground, |
| 122 ClipLayerParent, | 122 ClipLayerParent, |
| 123 ClipLayerOverflowControls, | 123 ClipLayerOverflowControls, |
| 124 ClipNodeImage, | 124 ClipNodeImage, |
| 125 ClipPopupListBoxFrame, | 125 ClipPopupListBoxFrame, |
| 126 ClipSelectionImage, | 126 ClipSelectionImage, |
| 127 PageWidgetDelegateClip, | 127 PageWidgetDelegateClip, |
| 128 TransparencyClip, | |
| 129 ClipPrintedPage, | 128 ClipPrintedPage, |
| 130 ClipLast = ClipPrintedPage, | 129 ClipLast = ClipPrintedPage, |
| 131 | 130 |
| 132 EndClipFirst, | 131 EndClipFirst, |
| 133 EndClipLast = EndClipFirst + ClipLast - ClipFirst, | 132 EndClipLast = EndClipFirst + ClipLast - ClipFirst, |
| 134 | 133 |
| 135 FloatClipFirst, | 134 FloatClipFirst, |
| 136 FloatClipPaintPhaseFirst = FloatClipFirst, | 135 FloatClipPaintPhaseFirst = FloatClipFirst, |
| 137 FloatClipPaintPhaseLast = FloatClipFirst + PaintPhaseMax, | 136 FloatClipPaintPhaseLast = FloatClipFirst + PaintPhaseMax, |
| 138 FloatClipLast = FloatClipPaintPhaseLast, | 137 FloatClipLast = FloatClipPaintPhaseLast, |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; | 398 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; |
| 400 #endif | 399 #endif |
| 401 | 400 |
| 402 private: | 401 private: |
| 403 bool isEnd() const final { return true; } | 402 bool isEnd() const final { return true; } |
| 404 }; | 403 }; |
| 405 | 404 |
| 406 } // namespace blink | 405 } // namespace blink |
| 407 | 406 |
| 408 #endif // DisplayItem_h | 407 #endif // DisplayItem_h |
| OLD | NEW |