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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(PaintLayerPainter::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_isRootScroller(false), |
155 m_hasDescendantWithClipPath(false), | 156 m_hasDescendantWithClipPath(false), |
156 m_hasNonIsolatedDescendantWithBlendMode(false), | 157 m_hasNonIsolatedDescendantWithBlendMode(false), |
157 m_hasAncestorWithClipPath(false), | 158 m_hasAncestorWithClipPath(false), |
158 m_hasRootScrollerAsDescendant(false), | 159 m_hasRootScrollerAsDescendant(false), |
159 m_layoutObject(layoutObject), | 160 m_layoutObject(layoutObject), |
160 m_parent(0), | 161 m_parent(0), |
161 m_previous(0), | 162 m_previous(0), |
162 m_next(0), | 163 m_next(0), |
163 m_first(0), | 164 m_first(0), |
164 m_last(0), | 165 m_last(0), |
(...skipping 3064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3229 } | 3230 } |
3230 | 3231 |
3231 void showLayerTree(const blink::LayoutObject* layoutObject) { | 3232 void showLayerTree(const blink::LayoutObject* layoutObject) { |
3232 if (!layoutObject) { | 3233 if (!layoutObject) { |
3233 LOG(INFO) << "Cannot showLayerTree. Root is (nil)"; | 3234 LOG(INFO) << "Cannot showLayerTree. Root is (nil)"; |
3234 return; | 3235 return; |
3235 } | 3236 } |
3236 showLayerTree(layoutObject->enclosingLayer()); | 3237 showLayerTree(layoutObject->enclosingLayer()); |
3237 } | 3238 } |
3238 #endif | 3239 #endif |
OLD | NEW |