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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
878 | 878 |
879 mutable OwnPtr<ClipRectsCache> m_clipRectsCache; | 879 mutable OwnPtr<ClipRectsCache> m_clipRectsCache; |
880 | 880 |
881 OwnPtr<PaintLayerStackingNode> m_stackingNode; | 881 OwnPtr<PaintLayerStackingNode> m_stackingNode; |
882 | 882 |
883 IntSize m_previousScrollOffsetAccumulationForPainting; | 883 IntSize m_previousScrollOffsetAccumulationForPainting; |
884 RefPtr<ClipRects> m_previousPaintingClipRects; | 884 RefPtr<ClipRects> m_previousPaintingClipRects; |
885 LayoutRect m_previousPaintDirtyRect; | 885 LayoutRect m_previousPaintDirtyRect; |
886 | 886 |
887 OwnPtr<PaintLayerRareData> m_rareData; | 887 OwnPtr<PaintLayerRareData> m_rareData; |
888 | |
889 DISPLAY_ITEM_CACHE_STATUS_IMPLEMENTATION | |
890 }; | 888 }; |
891 | 889 |
892 } // namespace blink | 890 } // namespace blink |
893 | 891 |
894 #ifndef NDEBUG | 892 #ifndef NDEBUG |
895 // Outside the WebCore namespace for ease of invocation from gdb. | 893 // Outside the WebCore namespace for ease of invocation from gdb. |
896 void showLayerTree(const blink::PaintLayer*); | 894 void showLayerTree(const blink::PaintLayer*); |
897 void showLayerTree(const blink::LayoutObject*); | 895 void showLayerTree(const blink::LayoutObject*); |
898 #endif | 896 #endif |
899 | 897 |
900 #endif // Layer_h | 898 #endif // Layer_h |
OLD | NEW |