| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 , m_hasCompositingDescendant(false) | 94 , m_hasCompositingDescendant(false) |
| 95 , m_lostGroupedMapping(false) | 95 , m_lostGroupedMapping(false) |
| 96 , m_renderer(renderer) | 96 , m_renderer(renderer) |
| 97 , m_parent(0) | 97 , m_parent(0) |
| 98 , m_previous(0) | 98 , m_previous(0) |
| 99 , m_next(0) | 99 , m_next(0) |
| 100 , m_first(0) | 100 , m_first(0) |
| 101 , m_last(0) | 101 , m_last(0) |
| 102 , m_staticInlinePosition(0) | 102 , m_staticInlinePosition(0) |
| 103 , m_staticBlockPosition(0) | 103 , m_staticBlockPosition(0) |
| 104 , m_paintInvalidator(*renderer) | |
| 105 , m_clipper(*renderer) | 104 , m_clipper(*renderer) |
| 106 { | 105 { |
| 107 updateStackingNode(); | 106 updateStackingNode(); |
| 108 | 107 |
| 109 m_isSelfPaintingLayer = shouldBeSelfPaintingLayer(); | 108 m_isSelfPaintingLayer = shouldBeSelfPaintingLayer(); |
| 110 | 109 |
| 111 updateScrollableArea(); | 110 updateScrollableArea(); |
| 112 } | 111 } |
| 113 | 112 |
| 114 RenderLayer::~RenderLayer() | 113 RenderLayer::~RenderLayer() |
| (...skipping 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2053 } | 2052 } |
| 2054 } | 2053 } |
| 2055 | 2054 |
| 2056 void showLayerTree(const blink::RenderObject* renderer) | 2055 void showLayerTree(const blink::RenderObject* renderer) |
| 2057 { | 2056 { |
| 2058 if (!renderer) | 2057 if (!renderer) |
| 2059 return; | 2058 return; |
| 2060 showLayerTree(renderer->enclosingLayer()); | 2059 showLayerTree(renderer->enclosingLayer()); |
| 2061 } | 2060 } |
| 2062 #endif | 2061 #endif |
| OLD | NEW |