| 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 reserv
ed. | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 8 | 8 |
| 9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
| 10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 }; | 650 }; |
| 651 | 651 |
| 652 void updateLifecyclePhasesInternal(LifeCycleUpdateOption); | 652 void updateLifecyclePhasesInternal(LifeCycleUpdateOption); |
| 653 void invalidateTreeIfNeededRecursive(); | 653 void invalidateTreeIfNeededRecursive(); |
| 654 void scrollContentsIfNeededRecursive(); | 654 void scrollContentsIfNeededRecursive(); |
| 655 void updateStyleAndLayoutIfNeededRecursive(); | 655 void updateStyleAndLayoutIfNeededRecursive(); |
| 656 void updatePaintProperties(); | 656 void updatePaintProperties(); |
| 657 void synchronizedPaint(); | 657 void synchronizedPaint(); |
| 658 void synchronizedPaintRecursively(GraphicsLayer*); | 658 void synchronizedPaintRecursively(GraphicsLayer*); |
| 659 | 659 |
| 660 void updateStyleAndLayoutIfNeededRecursiveInternal(); |
| 661 void invalidateTreeIfNeededRecursiveInternal(); |
| 662 |
| 660 void pushPaintArtifactToCompositor(); | 663 void pushPaintArtifactToCompositor(); |
| 661 | 664 |
| 662 void reset(); | 665 void reset(); |
| 663 void init(); | 666 void init(); |
| 664 | 667 |
| 665 void clearLayoutSubtreeRootsAndMarkContainingBlocks(); | 668 void clearLayoutSubtreeRootsAndMarkContainingBlocks(); |
| 666 | 669 |
| 667 // Called when our frame rect changes (or the rect/scroll position of an anc
estor changes). | 670 // Called when our frame rect changes (or the rect/scroll position of an anc
estor changes). |
| 668 void frameRectsChanged() override; | 671 void frameRectsChanged() override; |
| 669 | 672 |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) | 936 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) |
| 934 setIsVisuallyNonEmpty(); | 937 setIsVisuallyNonEmpty(); |
| 935 } | 938 } |
| 936 | 939 |
| 937 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); | 940 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); |
| 938 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); | 941 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); |
| 939 | 942 |
| 940 } // namespace blink | 943 } // namespace blink |
| 941 | 944 |
| 942 #endif // FrameView_h | 945 #endif // FrameView_h |
| OLD | NEW |