| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 RenderLayer::RenderLayer(RenderLayerModelObject* renderer, LayerType type) | 81 RenderLayer::RenderLayer(RenderLayerModelObject* renderer, LayerType type) |
| 82 : m_layerType(type) | 82 : m_layerType(type) |
| 83 , m_hasSelfPaintingLayerDescendant(false) | 83 , m_hasSelfPaintingLayerDescendant(false) |
| 84 , m_hasSelfPaintingLayerDescendantDirty(false) | 84 , m_hasSelfPaintingLayerDescendantDirty(false) |
| 85 , m_isRootLayer(renderer->isRenderView()) | 85 , m_isRootLayer(renderer->isRenderView()) |
| 86 , m_usedTransparency(false) | 86 , m_usedTransparency(false) |
| 87 , m_3DTransformedDescendantStatusDirty(true) | 87 , m_3DTransformedDescendantStatusDirty(true) |
| 88 , m_has3DTransformedDescendant(false) | 88 , m_has3DTransformedDescendant(false) |
| 89 , m_hasFilterInfo(false) | 89 , m_hasFilterInfo(false) |
| 90 , m_lostGroupedMapping(false) | |
| 91 , m_renderer(renderer) | 90 , m_renderer(renderer) |
| 92 , m_parent(0) | 91 , m_parent(0) |
| 93 , m_previous(0) | 92 , m_previous(0) |
| 94 , m_next(0) | 93 , m_next(0) |
| 95 , m_first(0) | 94 , m_first(0) |
| 96 , m_last(0) | 95 , m_last(0) |
| 97 , m_staticInlinePosition(0) | 96 , m_staticInlinePosition(0) |
| 98 , m_staticBlockPosition(0) | 97 , m_staticBlockPosition(0) |
| 99 , m_clipper(*renderer) | 98 , m_clipper(*renderer) |
| 100 { | 99 { |
| (...skipping 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1740 } | 1739 } |
| 1741 } | 1740 } |
| 1742 | 1741 |
| 1743 void showLayerTree(const blink::RenderObject* renderer) | 1742 void showLayerTree(const blink::RenderObject* renderer) |
| 1744 { | 1743 { |
| 1745 if (!renderer) | 1744 if (!renderer) |
| 1746 return; | 1745 return; |
| 1747 showLayerTree(renderer->enclosingLayer()); | 1746 showLayerTree(renderer->enclosingLayer()); |
| 1748 } | 1747 } |
| 1749 #endif | 1748 #endif |
| OLD | NEW |