OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights |
3 * reserved. | 3 * reserved. |
4 * | 4 * |
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
6 * | 6 * |
7 * Other contributors: | 7 * Other contributors: |
8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 m_has3DTransformedDescendant(false), | 147 m_has3DTransformedDescendant(false), |
148 m_containsDirtyOverlayScrollbars(false), | 148 m_containsDirtyOverlayScrollbars(false), |
149 m_needsAncestorDependentCompositingInputsUpdate(true), | 149 m_needsAncestorDependentCompositingInputsUpdate(true), |
150 m_needsDescendantDependentCompositingInputsUpdate(true), | 150 m_needsDescendantDependentCompositingInputsUpdate(true), |
151 m_childNeedsCompositingInputsUpdate(true), | 151 m_childNeedsCompositingInputsUpdate(true), |
152 m_hasCompositingDescendant(false), | 152 m_hasCompositingDescendant(false), |
153 m_isAllScrollingContentComposited(false), | 153 m_isAllScrollingContentComposited(false), |
154 m_shouldIsolateCompositedDescendants(false), | 154 m_shouldIsolateCompositedDescendants(false), |
155 m_lostGroupedMapping(false), | 155 m_lostGroupedMapping(false), |
156 m_needsRepaint(false), | 156 m_needsRepaint(false), |
157 m_previousPaintResult(PaintLayerPainter::FullyPainted), | 157 m_previousPaintResult(FullyPainted), |
158 m_needsPaintPhaseDescendantOutlines(false), | 158 m_needsPaintPhaseDescendantOutlines(false), |
159 m_previousPaintPhaseDescendantOutlinesWasEmpty(false), | 159 m_previousPaintPhaseDescendantOutlinesWasEmpty(false), |
160 m_needsPaintPhaseFloat(false), | 160 m_needsPaintPhaseFloat(false), |
161 m_previousPaintPhaseFloatWasEmpty(false), | 161 m_previousPaintPhaseFloatWasEmpty(false), |
162 m_needsPaintPhaseDescendantBlockBackgrounds(false), | 162 m_needsPaintPhaseDescendantBlockBackgrounds(false), |
163 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false), | 163 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false), |
164 m_hasDescendantWithClipPath(false), | 164 m_hasDescendantWithClipPath(false), |
165 m_hasNonIsolatedDescendantWithBlendMode(false), | 165 m_hasNonIsolatedDescendantWithBlendMode(false), |
166 m_hasAncestorWithClipPath(false), | 166 m_hasAncestorWithClipPath(false), |
167 m_hasRootScrollerAsDescendant(false), | 167 m_hasRootScrollerAsDescendant(false), |
(...skipping 3106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3274 } | 3274 } |
3275 | 3275 |
3276 void showLayerTree(const blink::LayoutObject* layoutObject) { | 3276 void showLayerTree(const blink::LayoutObject* layoutObject) { |
3277 if (!layoutObject) { | 3277 if (!layoutObject) { |
3278 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); | 3278 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); |
3279 return; | 3279 return; |
3280 } | 3280 } |
3281 showLayerTree(layoutObject->enclosingLayer()); | 3281 showLayerTree(layoutObject->enclosingLayer()); |
3282 } | 3282 } |
3283 #endif | 3283 #endif |
OLD | NEW |