| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 m_has3DTransformedDescendant(false), | 138 m_has3DTransformedDescendant(false), |
| 139 m_containsDirtyOverlayScrollbars(false), | 139 m_containsDirtyOverlayScrollbars(false), |
| 140 m_needsAncestorDependentCompositingInputsUpdate(true), | 140 m_needsAncestorDependentCompositingInputsUpdate(true), |
| 141 m_needsDescendantDependentCompositingInputsUpdate(true), | 141 m_needsDescendantDependentCompositingInputsUpdate(true), |
| 142 m_childNeedsCompositingInputsUpdate(true), | 142 m_childNeedsCompositingInputsUpdate(true), |
| 143 m_hasCompositingDescendant(false), | 143 m_hasCompositingDescendant(false), |
| 144 m_isAllScrollingContentComposited(false), | 144 m_isAllScrollingContentComposited(false), |
| 145 m_shouldIsolateCompositedDescendants(false), | 145 m_shouldIsolateCompositedDescendants(false), |
| 146 m_lostGroupedMapping(false), | 146 m_lostGroupedMapping(false), |
| 147 m_needsRepaint(false), | 147 m_needsRepaint(false), |
| 148 m_previousPaintResult(PaintLayerPainter::FullyPainted), | 148 m_previousPaintResult(FullyPainted), |
| 149 m_needsPaintPhaseDescendantOutlines(false), | 149 m_needsPaintPhaseDescendantOutlines(false), |
| 150 m_previousPaintPhaseDescendantOutlinesWasEmpty(false), | 150 m_previousPaintPhaseDescendantOutlinesWasEmpty(false), |
| 151 m_needsPaintPhaseFloat(false), | 151 m_needsPaintPhaseFloat(false), |
| 152 m_previousPaintPhaseFloatWasEmpty(false), | 152 m_previousPaintPhaseFloatWasEmpty(false), |
| 153 m_needsPaintPhaseDescendantBlockBackgrounds(false), | 153 m_needsPaintPhaseDescendantBlockBackgrounds(false), |
| 154 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false), | 154 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false), |
| 155 m_hasDescendantWithClipPath(false), | 155 m_hasDescendantWithClipPath(false), |
| 156 m_hasNonIsolatedDescendantWithBlendMode(false), | 156 m_hasNonIsolatedDescendantWithBlendMode(false), |
| 157 m_hasAncestorWithClipPath(false), | 157 m_hasAncestorWithClipPath(false), |
| 158 m_hasRootScrollerAsDescendant(false), | 158 m_hasRootScrollerAsDescendant(false), |
| (...skipping 3070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3229 } | 3229 } |
| 3230 | 3230 |
| 3231 void showLayerTree(const blink::LayoutObject* layoutObject) { | 3231 void showLayerTree(const blink::LayoutObject* layoutObject) { |
| 3232 if (!layoutObject) { | 3232 if (!layoutObject) { |
| 3233 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); | 3233 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); |
| 3234 return; | 3234 return; |
| 3235 } | 3235 } |
| 3236 showLayerTree(layoutObject->enclosingLayer()); | 3236 showLayerTree(layoutObject->enclosingLayer()); |
| 3237 } | 3237 } |
| 3238 #endif | 3238 #endif |
| OLD | NEW |