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