| 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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 | 761 |
| 762 void collectAnnotatedRegions(LayoutObject&, Vector<AnnotatedRegionValue>&) c
onst; | 762 void collectAnnotatedRegions(LayoutObject&, Vector<AnnotatedRegionValue>&) c
onst; |
| 763 | 763 |
| 764 template <typename Function> void forAllNonThrottledFrameViews(const Functio
n&); | 764 template <typename Function> void forAllNonThrottledFrameViews(const Functio
n&); |
| 765 | 765 |
| 766 void setNeedsUpdateViewportIntersection(); | 766 void setNeedsUpdateViewportIntersection(); |
| 767 void updateViewportIntersectionsForSubtree(DocumentLifecycle::LifecycleState
targetState); | 767 void updateViewportIntersectionsForSubtree(DocumentLifecycle::LifecycleState
targetState); |
| 768 void updateViewportIntersectionIfNeeded(); | 768 void updateViewportIntersectionIfNeeded(); |
| 769 void notifyRenderThrottlingObservers(); | 769 void notifyRenderThrottlingObservers(); |
| 770 void updateThrottlingStatus(); | 770 void updateThrottlingStatus(); |
| 771 void notifyResizeObserver(); |
| 771 | 772 |
| 772 // PaintInvalidationCapableScrollableArea | 773 // PaintInvalidationCapableScrollableArea |
| 773 LayoutBox& boxForScrollControlPaintInvalidation() const override; | 774 LayoutBox& boxForScrollControlPaintInvalidation() const override; |
| 774 LayoutScrollbarPart* resizer() const override { return nullptr; } | 775 LayoutScrollbarPart* resizer() const override { return nullptr; } |
| 775 | 776 |
| 776 void checkLayoutInvalidationIsAllowed() const; | 777 void checkLayoutInvalidationIsAllowed() const; |
| 777 | 778 |
| 778 LayoutSize m_size; | 779 LayoutSize m_size; |
| 779 | 780 |
| 780 typedef HashSet<RefPtr<LayoutEmbeddedObject>> EmbeddedObjectSet; | 781 typedef HashSet<RefPtr<LayoutEmbeddedObject>> EmbeddedObjectSet; |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) | 950 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) |
| 950 setIsVisuallyNonEmpty(); | 951 setIsVisuallyNonEmpty(); |
| 951 } | 952 } |
| 952 | 953 |
| 953 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); | 954 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); |
| 954 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); | 955 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); |
| 955 | 956 |
| 956 } // namespace blink | 957 } // namespace blink |
| 957 | 958 |
| 958 #endif // FrameView_h | 959 #endif // FrameView_h |
| OLD | NEW |