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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 m_shouldIsolateCompositedDescendants(false), | 149 m_shouldIsolateCompositedDescendants(false), |
150 m_lostGroupedMapping(false), | 150 m_lostGroupedMapping(false), |
151 m_needsRepaint(false), | 151 m_needsRepaint(false), |
152 m_previousPaintResult(FullyPainted), | 152 m_previousPaintResult(FullyPainted), |
153 m_needsPaintPhaseDescendantOutlines(false), | 153 m_needsPaintPhaseDescendantOutlines(false), |
154 m_previousPaintPhaseDescendantOutlinesWasEmpty(false), | 154 m_previousPaintPhaseDescendantOutlinesWasEmpty(false), |
155 m_needsPaintPhaseFloat(false), | 155 m_needsPaintPhaseFloat(false), |
156 m_previousPaintPhaseFloatWasEmpty(false), | 156 m_previousPaintPhaseFloatWasEmpty(false), |
157 m_needsPaintPhaseDescendantBlockBackgrounds(false), | 157 m_needsPaintPhaseDescendantBlockBackgrounds(false), |
158 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false), | 158 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false), |
| 159 m_isGlobalRootScroller(false), |
159 m_hasDescendantWithClipPath(false), | 160 m_hasDescendantWithClipPath(false), |
160 m_hasNonIsolatedDescendantWithBlendMode(false), | 161 m_hasNonIsolatedDescendantWithBlendMode(false), |
161 m_hasAncestorWithClipPath(false), | 162 m_hasAncestorWithClipPath(false), |
162 m_hasRootScrollerAsDescendant(false), | 163 m_hasRootScrollerAsDescendant(false), |
163 m_layoutObject(layoutObject), | 164 m_layoutObject(layoutObject), |
164 m_parent(0), | 165 m_parent(0), |
165 m_previous(0), | 166 m_previous(0), |
166 m_next(0), | 167 m_next(0), |
167 m_first(0), | 168 m_first(0), |
168 m_last(0), | 169 m_last(0), |
(...skipping 3081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3250 } | 3251 } |
3251 | 3252 |
3252 void showLayerTree(const blink::LayoutObject* layoutObject) { | 3253 void showLayerTree(const blink::LayoutObject* layoutObject) { |
3253 if (!layoutObject) { | 3254 if (!layoutObject) { |
3254 LOG(INFO) << "Cannot showLayerTree. Root is (nil)"; | 3255 LOG(INFO) << "Cannot showLayerTree. Root is (nil)"; |
3255 return; | 3256 return; |
3256 } | 3257 } |
3257 showLayerTree(layoutObject->enclosingLayer()); | 3258 showLayerTree(layoutObject->enclosingLayer()); |
3258 } | 3259 } |
3259 #endif | 3260 #endif |
OLD | NEW |