OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
3 * | 3 * |
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
5 * | 5 * |
6 * Other contributors: | 6 * Other contributors: |
7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 , m_hasFilterInfo(false) | 120 , m_hasFilterInfo(false) |
121 , m_needsAncestorDependentCompositingInputsUpdate(true) | 121 , m_needsAncestorDependentCompositingInputsUpdate(true) |
122 , m_needsDescendantDependentCompositingInputsUpdate(true) | 122 , m_needsDescendantDependentCompositingInputsUpdate(true) |
123 , m_childNeedsCompositingInputsUpdate(true) | 123 , m_childNeedsCompositingInputsUpdate(true) |
124 , m_hasCompositingDescendant(false) | 124 , m_hasCompositingDescendant(false) |
125 , m_hasNonCompositedChild(false) | 125 , m_hasNonCompositedChild(false) |
126 , m_shouldIsolateCompositedDescendants(false) | 126 , m_shouldIsolateCompositedDescendants(false) |
127 , m_lostGroupedMapping(false) | 127 , m_lostGroupedMapping(false) |
128 , m_needsRepaint(false) | 128 , m_needsRepaint(false) |
129 , m_previousPaintResult(PaintLayerPainter::FullyPainted) | 129 , m_previousPaintResult(PaintLayerPainter::FullyPainted) |
| 130 , m_needsPaintPhaseDescendantOutlines(false) |
130 , m_layoutObject(layoutObject) | 131 , m_layoutObject(layoutObject) |
131 , m_parent(0) | 132 , m_parent(0) |
132 , m_previous(0) | 133 , m_previous(0) |
133 , m_next(0) | 134 , m_next(0) |
134 , m_first(0) | 135 , m_first(0) |
135 , m_last(0) | 136 , m_last(0) |
136 , m_staticInlinePosition(0) | 137 , m_staticInlinePosition(0) |
137 , m_staticBlockPosition(0) | 138 , m_staticBlockPosition(0) |
138 , m_enclosingPaginationLayer(0) | 139 , m_enclosingPaginationLayer(0) |
139 , m_potentialCompositingReasonsFromStyle(CompositingReasonNone) | 140 , m_potentialCompositingReasonsFromStyle(CompositingReasonNone) |
(...skipping 2691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2831 | 2832 |
2832 void showLayerTree(const blink::LayoutObject* layoutObject) | 2833 void showLayerTree(const blink::LayoutObject* layoutObject) |
2833 { | 2834 { |
2834 if (!layoutObject) { | 2835 if (!layoutObject) { |
2835 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); | 2836 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); |
2836 return; | 2837 return; |
2837 } | 2838 } |
2838 showLayerTree(layoutObject->enclosingLayer()); | 2839 showLayerTree(layoutObject->enclosingLayer()); |
2839 } | 2840 } |
2840 #endif | 2841 #endif |
OLD | NEW |