| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 NeedsFullRepaintInBacking = 1 << 1, | 160 NeedsFullRepaintInBacking = 1 << 1, |
| 161 UpdatePagination = 1 << 2, | 161 UpdatePagination = 1 << 2, |
| 162 }; | 162 }; |
| 163 typedef unsigned UpdateLayerPositionsFlags; | 163 typedef unsigned UpdateLayerPositionsFlags; |
| 164 | 164 |
| 165 void updateLayerPositionsAfterLayout(const RenderLayer* rootLayer, UpdateLay
erPositionsFlags); | 165 void updateLayerPositionsAfterLayout(const RenderLayer* rootLayer, UpdateLay
erPositionsFlags); |
| 166 void updateLayerPositionsAfterOverflowScroll(); | 166 void updateLayerPositionsAfterOverflowScroll(); |
| 167 void updateLayerPositionsAfterDocumentScroll(); | 167 void updateLayerPositionsAfterDocumentScroll(); |
| 168 | 168 |
| 169 // FIXME: Should updateLayerPositions be private? | 169 // FIXME: Should updateLayerPositions be private? |
| 170 void updateLayerPositions(RenderGeometryMap*, UpdateLayerPositionsFlags = Ch
eckForRepaint); | 170 void updateLayerPositions(RenderGeometryMap*, const RenderLayerModelObject*
paintInvalidationContainer, UpdateLayerPositionsFlags = CheckForRepaint); |
| 171 | 171 |
| 172 bool isPaginated() const { return m_isPaginated; } | 172 bool isPaginated() const { return m_isPaginated; } |
| 173 RenderLayer* enclosingPaginationLayer() const { return m_enclosingPagination
Layer; } | 173 RenderLayer* enclosingPaginationLayer() const { return m_enclosingPagination
Layer; } |
| 174 | 174 |
| 175 void updateTransform(); | 175 void updateTransform(); |
| 176 RenderLayer* renderingContextRoot(); | 176 RenderLayer* renderingContextRoot(); |
| 177 | 177 |
| 178 const LayoutSize& offsetForInFlowPosition() const { return m_offsetForInFlow
Position; } | 178 const LayoutSize& offsetForInFlowPosition() const { return m_offsetForInFlow
Position; } |
| 179 | 179 |
| 180 void addBlockSelectionGapsBounds(const LayoutRect&); | 180 void addBlockSelectionGapsBounds(const LayoutRect&); |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 | 730 |
| 731 } // namespace WebCore | 731 } // namespace WebCore |
| 732 | 732 |
| 733 #ifndef NDEBUG | 733 #ifndef NDEBUG |
| 734 // Outside the WebCore namespace for ease of invocation from gdb. | 734 // Outside the WebCore namespace for ease of invocation from gdb. |
| 735 void showLayerTree(const WebCore::RenderLayer*); | 735 void showLayerTree(const WebCore::RenderLayer*); |
| 736 void showLayerTree(const WebCore::RenderObject*); | 736 void showLayerTree(const WebCore::RenderObject*); |
| 737 #endif | 737 #endif |
| 738 | 738 |
| 739 #endif // RenderLayer_h | 739 #endif // RenderLayer_h |
| OLD | NEW |