| 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/paint/DisplayItemClient.h" | 9 #include "platform/graphics/paint/DisplayItemClient.h" |
| 10 #include "wtf/Assertions.h" | 10 #include "wtf/Assertions.h" |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 EndTransform3DLast = EndTransform3DFirst + Transform3DLast - Transform3D
First, | 140 EndTransform3DLast = EndTransform3DFirst + Transform3DLast - Transform3D
First, |
| 141 | 141 |
| 142 BeginFilter, | 142 BeginFilter, |
| 143 EndFilter, | 143 EndFilter, |
| 144 BeginCompositing, | 144 BeginCompositing, |
| 145 EndCompositing, | 145 EndCompositing, |
| 146 BeginTransform, | 146 BeginTransform, |
| 147 EndTransform, | 147 EndTransform, |
| 148 BeginClipPath, | 148 BeginClipPath, |
| 149 EndClipPath, | 149 EndClipPath, |
| 150 BeginFixedPosition, | |
| 151 EndFixedPosition, | |
| 152 BeginFixedPositionContainer, | |
| 153 EndFixedPositionContainer, | |
| 154 | 150 |
| 155 SubtreeCachedFirst, | 151 SubtreeCachedFirst, |
| 156 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst, | 152 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst, |
| 157 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM
ax, | 153 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM
ax, |
| 158 SubtreeCachedLast = SubtreeCachedPaintPhaseLast, | 154 SubtreeCachedLast = SubtreeCachedPaintPhaseLast, |
| 159 | 155 |
| 160 BeginSubtreeFirst, | 156 BeginSubtreeFirst, |
| 161 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst, | 157 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst, |
| 162 BeginSubtreePaintPhaseLast = BeginSubtreePaintPhaseFirst + PaintPhaseMax
, | 158 BeginSubtreePaintPhaseLast = BeginSubtreePaintPhaseFirst + PaintPhaseMax
, |
| 163 BeginSubtreeLast = BeginSubtreePaintPhaseLast, | 159 BeginSubtreeLast = BeginSubtreePaintPhaseLast, |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0
; | 306 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0
; |
| 311 #endif | 307 #endif |
| 312 | 308 |
| 313 private: | 309 private: |
| 314 virtual bool isEnd() const override final { return true; } | 310 virtual bool isEnd() const override final { return true; } |
| 315 }; | 311 }; |
| 316 | 312 |
| 317 } // namespace blink | 313 } // namespace blink |
| 318 | 314 |
| 319 #endif // DisplayItem_h | 315 #endif // DisplayItem_h |
| OLD | NEW |