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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 ScrollLast = ScrollPaintPhaseLast, | 119 ScrollLast = ScrollPaintPhaseLast, |
120 EndScrollFirst, | 120 EndScrollFirst, |
121 EndScrollLast = EndScrollFirst + ScrollLast - ScrollFirst, | 121 EndScrollLast = EndScrollFirst + ScrollLast - ScrollFirst, |
122 | 122 |
123 BeginFilter, | 123 BeginFilter, |
124 EndFilter, | 124 EndFilter, |
125 BeginCompositing, | 125 BeginCompositing, |
126 EndCompositing, | 126 EndCompositing, |
127 BeginTransform, | 127 BeginTransform, |
128 EndTransform, | 128 EndTransform, |
| 129 BeginTransform3D, |
| 130 EndTransform3D, |
129 BeginClipPath, | 131 BeginClipPath, |
130 EndClipPath, | 132 EndClipPath, |
131 | 133 |
132 SubtreeCachedFirst, | 134 SubtreeCachedFirst, |
133 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst, | 135 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst, |
134 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM
ax, | 136 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM
ax, |
135 SubtreeCachedLast = SubtreeCachedPaintPhaseLast, | 137 SubtreeCachedLast = SubtreeCachedPaintPhaseLast, |
136 | 138 |
137 BeginSubtreeFirst, | 139 BeginSubtreeFirst, |
138 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst, | 140 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst, |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0
; | 286 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0
; |
285 #endif | 287 #endif |
286 | 288 |
287 private: | 289 private: |
288 virtual bool isEnd() const override final { return true; } | 290 virtual bool isEnd() const override final { return true; } |
289 }; | 291 }; |
290 | 292 |
291 } // namespace blink | 293 } // namespace blink |
292 | 294 |
293 #endif // DisplayItem_h | 295 #endif // DisplayItem_h |
OLD | NEW |