| 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 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 // box. Otherwise, this is the LayoutInline's lines' bounding box. | 837 // box. Otherwise, this is the LayoutInline's lines' bounding box. |
| 838 IntSize m_size; | 838 IntSize m_size; |
| 839 | 839 |
| 840 // Cached normal flow values for absolute positioned elements with static le
ft/top values. | 840 // Cached normal flow values for absolute positioned elements with static le
ft/top values. |
| 841 LayoutUnit m_staticInlinePosition; | 841 LayoutUnit m_staticInlinePosition; |
| 842 LayoutUnit m_staticBlockPosition; | 842 LayoutUnit m_staticBlockPosition; |
| 843 | 843 |
| 844 AncestorDependentCompositingInputs m_ancestorDependentCompositingInputs; | 844 AncestorDependentCompositingInputs m_ancestorDependentCompositingInputs; |
| 845 OwnPtr<RareAncestorDependentCompositingInputs> m_rareAncestorDependentCompos
itingInputs; | 845 OwnPtr<RareAncestorDependentCompositingInputs> m_rareAncestorDependentCompos
itingInputs; |
| 846 | 846 |
| 847 OwnPtrWillBePersistent<PaintLayerScrollableArea> m_scrollableArea; | 847 Persistent<PaintLayerScrollableArea> m_scrollableArea; |
| 848 | 848 |
| 849 mutable OwnPtr<ClipRectsCache> m_clipRectsCache; | 849 mutable OwnPtr<ClipRectsCache> m_clipRectsCache; |
| 850 | 850 |
| 851 OwnPtr<PaintLayerStackingNode> m_stackingNode; | 851 OwnPtr<PaintLayerStackingNode> m_stackingNode; |
| 852 | 852 |
| 853 IntSize m_previousScrollOffsetAccumulationForPainting; | 853 IntSize m_previousScrollOffsetAccumulationForPainting; |
| 854 RefPtr<ClipRects> m_previousPaintingClipRects; | 854 RefPtr<ClipRects> m_previousPaintingClipRects; |
| 855 LayoutRect m_previousPaintDirtyRect; | 855 LayoutRect m_previousPaintDirtyRect; |
| 856 | 856 |
| 857 OwnPtr<PaintLayerRareData> m_rareData; | 857 OwnPtr<PaintLayerRareData> m_rareData; |
| 858 }; | 858 }; |
| 859 | 859 |
| 860 } // namespace blink | 860 } // namespace blink |
| 861 | 861 |
| 862 #ifndef NDEBUG | 862 #ifndef NDEBUG |
| 863 // Outside the WebCore namespace for ease of invocation from gdb. | 863 // Outside the WebCore namespace for ease of invocation from gdb. |
| 864 void showLayerTree(const blink::PaintLayer*); | 864 void showLayerTree(const blink::PaintLayer*); |
| 865 void showLayerTree(const blink::LayoutObject*); | 865 void showLayerTree(const blink::LayoutObject*); |
| 866 #endif | 866 #endif |
| 867 | 867 |
| 868 #endif // Layer_h | 868 #endif // Layer_h |
| OLD | NEW |