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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 bool attemptDirectCompositingUpdate(StyleDifference, const ComputedStyle* ol
dStyle); | 765 bool attemptDirectCompositingUpdate(StyleDifference, const ComputedStyle* ol
dStyle); |
766 void updateTransform(const ComputedStyle* oldStyle, const ComputedStyle& new
Style); | 766 void updateTransform(const ComputedStyle* oldStyle, const ComputedStyle& new
Style); |
767 | 767 |
768 void removeAncestorOverflowLayer(const PaintLayer* removedLayer); | 768 void removeAncestorOverflowLayer(const PaintLayer* removedLayer); |
769 | 769 |
770 void updateOrRemoveFilterClients(); | 770 void updateOrRemoveFilterClients(); |
771 | 771 |
772 void updatePaginationRecursive(bool needsPaginationUpdate = false); | 772 void updatePaginationRecursive(bool needsPaginationUpdate = false); |
773 void clearPaginationRecursive(); | 773 void clearPaginationRecursive(); |
774 | 774 |
| 775 void setNeedsRepaintInternal(); |
775 void markCompositingContainerChainForNeedsRepaint(); | 776 void markCompositingContainerChainForNeedsRepaint(); |
776 | 777 |
777 PaintLayerRareData& ensureRareData() | 778 PaintLayerRareData& ensureRareData() |
778 { | 779 { |
779 if (!m_rareData) | 780 if (!m_rareData) |
780 m_rareData = adoptPtr(new PaintLayerRareData); | 781 m_rareData = adoptPtr(new PaintLayerRareData); |
781 return *m_rareData; | 782 return *m_rareData; |
782 } | 783 } |
783 | 784 |
784 void mergeNeedsPaintPhaseFlagsFrom(const PaintLayer& layer) | 785 void mergeNeedsPaintPhaseFlagsFrom(const PaintLayer& layer) |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
896 | 897 |
897 } // namespace blink | 898 } // namespace blink |
898 | 899 |
899 #ifndef NDEBUG | 900 #ifndef NDEBUG |
900 // Outside the WebCore namespace for ease of invocation from gdb. | 901 // Outside the WebCore namespace for ease of invocation from gdb. |
901 void showLayerTree(const blink::PaintLayer*); | 902 void showLayerTree(const blink::PaintLayer*); |
902 void showLayerTree(const blink::LayoutObject*); | 903 void showLayerTree(const blink::LayoutObject*); |
903 #endif | 904 #endif |
904 | 905 |
905 #endif // Layer_h | 906 #endif // Layer_h |
OLD | NEW |