| 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 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 947 | 947 |
| 948 void recordDeferredLoadingStats(); | 948 void recordDeferredLoadingStats(); |
| 949 | 949 |
| 950 DocumentLifecycle& lifecycle() const; | 950 DocumentLifecycle& lifecycle() const; |
| 951 | 951 |
| 952 void contentsResized() override; | 952 void contentsResized() override; |
| 953 void scrollbarExistenceDidChange(); | 953 void scrollbarExistenceDidChange(); |
| 954 | 954 |
| 955 // Override FrameViewBase methods to do point conversion via layoutObjects, in | 955 // Override FrameViewBase methods to do point conversion via layoutObjects, in |
| 956 // order to take transforms into account. | 956 // order to take transforms into account. |
| 957 IntRect convertToContainingWidget(const IntRect&) const override; | 957 IntRect convertToContainingFrameViewBase(const IntRect&) const override; |
| 958 IntRect convertFromContainingWidget(const IntRect&) const override; | 958 IntRect convertFromContainingFrameViewBase(const IntRect&) const override; |
| 959 IntPoint convertToContainingWidget(const IntPoint&) const override; | 959 IntPoint convertToContainingFrameViewBase(const IntPoint&) const override; |
| 960 IntPoint convertFromContainingWidget(const IntPoint&) const override; | 960 IntPoint convertFromContainingFrameViewBase(const IntPoint&) const override; |
| 961 | 961 |
| 962 void didChangeGlobalRootScroller() override; | 962 void didChangeGlobalRootScroller() override; |
| 963 | 963 |
| 964 void updateWidgetGeometriesIfNeeded(); | 964 void updateWidgetGeometriesIfNeeded(); |
| 965 | 965 |
| 966 bool wasViewportResized(); | 966 bool wasViewportResized(); |
| 967 void sendResizeEventIfNeeded(); | 967 void sendResizeEventIfNeeded(); |
| 968 | 968 |
| 969 void updateParentScrollableAreaSet(); | 969 void updateParentScrollableAreaSet(); |
| 970 | 970 |
| (...skipping 289 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 |