OLD | NEW |
---|---|
1 /* | 1 /* |
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights |
8 reserved. | 8 reserved. |
9 | 9 |
10 This library is free software; you can redistribute it and/or | 10 This library is free software; you can redistribute it and/or |
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
863 void updateScrollOffset(const ScrollOffset&, ScrollType) override; | 863 void updateScrollOffset(const ScrollOffset&, ScrollType) override; |
864 | 864 |
865 void updateScrollbarEnabledState(); | 865 void updateScrollbarEnabledState(); |
866 | 866 |
867 void updateLifecyclePhasesInternal( | 867 void updateLifecyclePhasesInternal( |
868 DocumentLifecycle::LifecycleState targetState); | 868 DocumentLifecycle::LifecycleState targetState); |
869 | 869 |
870 void invalidateTreeIfNeededRecursive(); | 870 void invalidateTreeIfNeededRecursive(); |
871 void scrollContentsIfNeededRecursive(); | 871 void scrollContentsIfNeededRecursive(); |
872 void updateStyleAndLayoutIfNeededRecursive(); | 872 void updateStyleAndLayoutIfNeededRecursive(); |
873 void updatePaintProperties(); | 873 void prePaint(); |
874 void synchronizedPaint(); | 874 void paint(); |
chrishtr
2017/01/05 17:51:10
With this CL there are now 3 methods called paint(
Xianzhu
2017/01/05 18:05:09
One of the other two is Widget override.
paintAll
| |
875 void synchronizedPaintRecursively(GraphicsLayer*); | 875 void paintGraphicsLayerRecursively(GraphicsLayer*); |
876 | 876 |
877 void updateStyleAndLayoutIfNeededRecursiveInternal(); | 877 void updateStyleAndLayoutIfNeededRecursiveInternal(); |
878 void invalidateTreeIfNeededRecursiveInternal(); | 878 void invalidateTreeIfNeededRecursiveInternal(); |
879 | 879 |
880 void pushPaintArtifactToCompositor(); | 880 void pushPaintArtifactToCompositor(); |
881 | 881 |
882 void reset(); | 882 void reset(); |
883 void init(); | 883 void init(); |
884 | 884 |
885 void clearLayoutSubtreeRootsAndMarkContainingBlocks(); | 885 void clearLayoutSubtreeRootsAndMarkContainingBlocks(); |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1208 widget.isFrameView()); | 1208 widget.isFrameView()); |
1209 DEFINE_TYPE_CASTS(FrameView, | 1209 DEFINE_TYPE_CASTS(FrameView, |
1210 ScrollableArea, | 1210 ScrollableArea, |
1211 scrollableArea, | 1211 scrollableArea, |
1212 scrollableArea->isFrameView(), | 1212 scrollableArea->isFrameView(), |
1213 scrollableArea.isFrameView()); | 1213 scrollableArea.isFrameView()); |
1214 | 1214 |
1215 } // namespace blink | 1215 } // namespace blink |
1216 | 1216 |
1217 #endif // FrameView_h | 1217 #endif // FrameView_h |
OLD | NEW |