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 "wtf/Assertions.h" | 9 #include "wtf/Assertions.h" |
10 #include "wtf/PassOwnPtr.h" | 10 #include "wtf/PassOwnPtr.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 DrawingPaintPhaseFloat = 3, | 33 DrawingPaintPhaseFloat = 3, |
34 DrawingPaintPhaseForeground = 4, | 34 DrawingPaintPhaseForeground = 4, |
35 DrawingPaintPhaseOutline = 5, | 35 DrawingPaintPhaseOutline = 5, |
36 DrawingPaintPhaseChildOutlines = 6, | 36 DrawingPaintPhaseChildOutlines = 6, |
37 DrawingPaintPhaseSelfOutline = 7, | 37 DrawingPaintPhaseSelfOutline = 7, |
38 DrawingPaintPhaseSelection = 8, | 38 DrawingPaintPhaseSelection = 8, |
39 DrawingPaintPhaseCollapsedTableBorders = 9, | 39 DrawingPaintPhaseCollapsedTableBorders = 9, |
40 DrawingPaintPhaseTextClip = 10, | 40 DrawingPaintPhaseTextClip = 10, |
41 DrawingPaintPhaseMask = 11, | 41 DrawingPaintPhaseMask = 11, |
42 DrawingPaintPhaseClippingMask = 12, | 42 DrawingPaintPhaseClippingMask = 12, |
| 43 DrawingPaintPhaseCaret = 13, |
43 ClipLayerOverflowControls, | 44 ClipLayerOverflowControls, |
44 ClipLayerBackground, | 45 ClipLayerBackground, |
45 ClipLayerParent, | 46 ClipLayerParent, |
46 ClipLayerFilter, | 47 ClipLayerFilter, |
47 ClipLayerForeground, | 48 ClipLayerForeground, |
48 ClipLayerFragmentFloat, | 49 ClipLayerFragmentFloat, |
49 ClipLayerFragmentForeground, | 50 ClipLayerFragmentForeground, |
50 ClipLayerFragmentChildOutline, | 51 ClipLayerFragmentChildOutline, |
51 ClipLayerFragmentOutline, | 52 ClipLayerFragmentOutline, |
52 ClipLayerFragmentMask, | 53 ClipLayerFragmentMask, |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 const Type type; | 131 const Type type; |
131 } m_id; | 132 } m_id; |
132 #ifndef NDEBUG | 133 #ifndef NDEBUG |
133 WTF::String m_clientDebugString; | 134 WTF::String m_clientDebugString; |
134 #endif | 135 #endif |
135 }; | 136 }; |
136 | 137 |
137 } | 138 } |
138 | 139 |
139 #endif // DisplayItem_h | 140 #endif // DisplayItem_h |
OLD | NEW |