| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 DrawingPaintPhaseFirst = DrawingFirst, | 61 DrawingPaintPhaseFirst = DrawingFirst, |
| 62 DrawingPaintPhaseLast = DrawingFirst + PaintPhaseMax, | 62 DrawingPaintPhaseLast = DrawingFirst + PaintPhaseMax, |
| 63 BoxDecorationBackground, | 63 BoxDecorationBackground, |
| 64 Caret, | 64 Caret, |
| 65 ColumnRules, | 65 ColumnRules, |
| 66 DebugRedFill, | 66 DebugRedFill, |
| 67 DocumentBackground, | 67 DocumentBackground, |
| 68 DragImage, | 68 DragImage, |
| 69 SVGImage, | 69 SVGImage, |
| 70 LinkHighlight, | 70 LinkHighlight, |
| 71 ImageAreaFocusRing, |
| 71 PageOverlay, | 72 PageOverlay, |
| 72 PageWidgetDelegateBackgroundFallback, | 73 PageWidgetDelegateBackgroundFallback, |
| 73 PopupContainerBorder, | 74 PopupContainerBorder, |
| 74 PopupListBoxBackground, | 75 PopupListBoxBackground, |
| 75 PopupListBoxRow, | 76 PopupListBoxRow, |
| 76 PrintedContentBackground, | 77 PrintedContentBackground, |
| 77 PrintedContentDestinationLocations, | 78 PrintedContentDestinationLocations, |
| 78 PrintedContentLineBoundary, | 79 PrintedContentLineBoundary, |
| 79 PrintedContentPDFURLRect, | 80 PrintedContentPDFURLRect, |
| 80 Resizer, | 81 Resizer, |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; | 400 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; |
| 400 #endif | 401 #endif |
| 401 | 402 |
| 402 private: | 403 private: |
| 403 bool isEnd() const final { return true; } | 404 bool isEnd() const final { return true; } |
| 404 }; | 405 }; |
| 405 | 406 |
| 406 } // namespace blink | 407 } // namespace blink |
| 407 | 408 |
| 408 #endif // DisplayItem_h | 409 #endif // DisplayItem_h |
| OLD | NEW |