| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 CachedDrawingFirst, | 106 CachedDrawingFirst, |
| 107 CachedDrawingLast = CachedDrawingFirst + DrawingLast - DrawingFirst, | 107 CachedDrawingLast = CachedDrawingFirst + DrawingLast - DrawingFirst, |
| 108 | 108 |
| 109 ClipFirst, | 109 ClipFirst, |
| 110 ClipBoxPaintPhaseFirst = ClipFirst, | 110 ClipBoxPaintPhaseFirst = ClipFirst, |
| 111 ClipBoxPaintPhaseLast = ClipBoxPaintPhaseFirst + PaintPhaseMax, | 111 ClipBoxPaintPhaseLast = ClipBoxPaintPhaseFirst + PaintPhaseMax, |
| 112 ClipColumnBoundsPaintPhaseFirst, | 112 ClipColumnBoundsPaintPhaseFirst, |
| 113 ClipColumnBoundsPaintPhaseLast = ClipColumnBoundsPaintPhaseFirst + Paint
PhaseMax, | 113 ClipColumnBoundsPaintPhaseLast = ClipColumnBoundsPaintPhaseFirst + Paint
PhaseMax, |
| 114 ClipLayerFragmentPaintPhaseFirst, | 114 ClipLayerFragmentPaintPhaseFirst, |
| 115 ClipLayerFragmentPaintPhaseLast = ClipLayerFragmentPaintPhaseFirst + Pai
ntPhaseMax, | 115 ClipLayerFragmentPaintPhaseLast = ClipLayerFragmentPaintPhaseFirst + Pai
ntPhaseMax, |
| 116 ClipDescendantStackingContext, |
| 116 ClipFileUploadControlRect, | 117 ClipFileUploadControlRect, |
| 117 ClipFrameToVisibleContentRect, | 118 ClipFrameToVisibleContentRect, |
| 118 ClipFrameScrollbars, | 119 ClipFrameScrollbars, |
| 119 ClipLayerBackground, | 120 ClipLayerBackground, |
| 120 ClipLayerColumnBounds, | 121 ClipLayerColumnBounds, |
| 121 ClipLayerFilter, | 122 ClipLayerFilter, |
| 122 ClipLayerForeground, | 123 ClipLayerForeground, |
| 123 ClipLayerParent, | 124 ClipLayerParent, |
| 124 ClipLayerOverflowControls, | 125 ClipLayerOverflowControls, |
| 125 ClipNodeImage, | 126 ClipNodeImage, |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; | 377 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; |
| 377 #endif | 378 #endif |
| 378 | 379 |
| 379 private: | 380 private: |
| 380 bool isEnd() const final { return true; } | 381 bool isEnd() const final { return true; } |
| 381 }; | 382 }; |
| 382 | 383 |
| 383 } // namespace blink | 384 } // namespace blink |
| 384 | 385 |
| 385 #endif // DisplayItem_h | 386 #endif // DisplayItem_h |
| OLD | NEW |