| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 ClipFrameToVisibleContentRect, | 120 ClipFrameToVisibleContentRect, |
| 121 ClipFrameScrollbars, | 121 ClipFrameScrollbars, |
| 122 ClipLayerBackground, | 122 ClipLayerBackground, |
| 123 ClipLayerColumnBounds, | 123 ClipLayerColumnBounds, |
| 124 ClipLayerFilter, | 124 ClipLayerFilter, |
| 125 ClipLayerForeground, | 125 ClipLayerForeground, |
| 126 ClipLayerParent, | 126 ClipLayerParent, |
| 127 ClipLayerOverflowControls, | 127 ClipLayerOverflowControls, |
| 128 ClipNodeImage, | 128 ClipNodeImage, |
| 129 ClipPopupListBoxFrame, | 129 ClipPopupListBoxFrame, |
| 130 ClipScrollbarsToBoxBounds, | |
| 131 ClipSelectionImage, | 130 ClipSelectionImage, |
| 132 PageWidgetDelegateClip, | 131 PageWidgetDelegateClip, |
| 133 ClipPrintedPage, | 132 ClipPrintedPage, |
| 134 ClipLast = ClipPrintedPage, | 133 ClipLast = ClipPrintedPage, |
| 135 | 134 |
| 136 EndClipFirst, | 135 EndClipFirst, |
| 137 EndClipLast = EndClipFirst + ClipLast - ClipFirst, | 136 EndClipLast = EndClipFirst + ClipLast - ClipFirst, |
| 138 | 137 |
| 139 FloatClipFirst, | 138 FloatClipFirst, |
| 140 FloatClipPaintPhaseFirst = FloatClipFirst, | 139 FloatClipPaintPhaseFirst = FloatClipFirst, |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; | 388 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; |
| 390 #endif | 389 #endif |
| 391 | 390 |
| 392 private: | 391 private: |
| 393 bool isEnd() const final { return true; } | 392 bool isEnd() const final { return true; } |
| 394 }; | 393 }; |
| 395 | 394 |
| 396 } // namespace blink | 395 } // namespace blink |
| 397 | 396 |
| 398 #endif // DisplayItem_h | 397 #endif // DisplayItem_h |
| OLD | NEW |