| 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 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 961 | 961 |
| 962 void didChangeGlobalRootScroller() override; | 962 void didChangeGlobalRootScroller() override; |
| 963 | 963 |
| 964 void updateGeometriesIfNeeded(); | 964 void updateGeometriesIfNeeded(); |
| 965 | 965 |
| 966 bool wasViewportResized(); | 966 bool wasViewportResized(); |
| 967 void sendResizeEventIfNeeded(); | 967 void sendResizeEventIfNeeded(); |
| 968 | 968 |
| 969 void updateParentScrollableAreaSet(); | 969 void updateParentScrollableAreaSet(); |
| 970 | 970 |
| 971 void scheduleUpdateWidgetsIfNecessary(); | 971 void scheduleUpdatePluginsIfNecessary(); |
| 972 void updateWidgetsTimerFired(TimerBase*); | 972 void updatePluginsTimerFired(TimerBase*); |
| 973 bool updateWidgets(); | 973 bool updatePlugins(); |
| 974 | 974 |
| 975 bool processUrlFragmentHelper(const String&, UrlFragmentBehavior); | 975 bool processUrlFragmentHelper(const String&, UrlFragmentBehavior); |
| 976 void setFragmentAnchor(Node*); | 976 void setFragmentAnchor(Node*); |
| 977 void scrollToFragmentAnchor(); | 977 void scrollToFragmentAnchor(); |
| 978 void didScrollTimerFired(TimerBase*); | 978 void didScrollTimerFired(TimerBase*); |
| 979 | 979 |
| 980 void updateLayersAndCompositingAfterScrollIfNeeded(); | 980 void updateLayersAndCompositingAfterScrollIfNeeded(); |
| 981 | 981 |
| 982 static bool computeCompositedSelection(LocalFrame&, CompositedSelection&); | 982 static bool computeCompositedSelection(LocalFrame&, CompositedSelection&); |
| 983 void updateCompositedSelectionIfNeeded(); | 983 void updateCompositedSelectionIfNeeded(); |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1068 | 1068 |
| 1069 bool m_hasPendingLayout; | 1069 bool m_hasPendingLayout; |
| 1070 LayoutSubtreeRootList m_layoutSubtreeRootList; | 1070 LayoutSubtreeRootList m_layoutSubtreeRootList; |
| 1071 DepthOrderedLayoutObjectList m_orthogonalWritingModeRootList; | 1071 DepthOrderedLayoutObjectList m_orthogonalWritingModeRootList; |
| 1072 | 1072 |
| 1073 bool m_layoutSchedulingEnabled; | 1073 bool m_layoutSchedulingEnabled; |
| 1074 bool m_inSynchronousPostLayout; | 1074 bool m_inSynchronousPostLayout; |
| 1075 int m_layoutCount; | 1075 int m_layoutCount; |
| 1076 unsigned m_nestedLayoutCount; | 1076 unsigned m_nestedLayoutCount; |
| 1077 TaskRunnerTimer<FrameView> m_postLayoutTasksTimer; | 1077 TaskRunnerTimer<FrameView> m_postLayoutTasksTimer; |
| 1078 TaskRunnerTimer<FrameView> m_updateWidgetsTimer; | 1078 TaskRunnerTimer<FrameView> m_updatePluginsTimer; |
| 1079 | 1079 |
| 1080 bool m_firstLayout; | 1080 bool m_firstLayout; |
| 1081 bool m_isTransparent; | 1081 bool m_isTransparent; |
| 1082 Color m_baseBackgroundColor; | 1082 Color m_baseBackgroundColor; |
| 1083 IntSize m_lastViewportSize; | 1083 IntSize m_lastViewportSize; |
| 1084 float m_lastZoomFactor; | 1084 float m_lastZoomFactor; |
| 1085 | 1085 |
| 1086 AtomicString m_mediaType; | 1086 AtomicString m_mediaType; |
| 1087 AtomicString m_mediaTypeWhenNotPrinting; | 1087 AtomicString m_mediaTypeWhenNotPrinting; |
| 1088 | 1088 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 frameViewBase.isFrameView()); | 1260 frameViewBase.isFrameView()); |
| 1261 DEFINE_TYPE_CASTS(FrameView, | 1261 DEFINE_TYPE_CASTS(FrameView, |
| 1262 ScrollableArea, | 1262 ScrollableArea, |
| 1263 scrollableArea, | 1263 scrollableArea, |
| 1264 scrollableArea->isFrameView(), | 1264 scrollableArea->isFrameView(), |
| 1265 scrollableArea.isFrameView()); | 1265 scrollableArea.isFrameView()); |
| 1266 | 1266 |
| 1267 } // namespace blink | 1267 } // namespace blink |
| 1268 | 1268 |
| 1269 #endif // FrameView_h | 1269 #endif // FrameView_h |
| OLD | NEW |