| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 ScrollbarMode& vMode, | 349 ScrollbarMode& vMode, |
| 350 ScrollbarModesCalculationStrategy = AnyRule) const; | 350 ScrollbarModesCalculationStrategy = AnyRule) const; |
| 351 | 351 |
| 352 IntPoint lastKnownMousePosition() const override; | 352 IntPoint lastKnownMousePosition() const override; |
| 353 bool shouldSetCursor() const; | 353 bool shouldSetCursor() const; |
| 354 | 354 |
| 355 void setCursor(const Cursor&); | 355 void setCursor(const Cursor&); |
| 356 | 356 |
| 357 bool scrollbarsCanBeActive() const override; | 357 bool scrollbarsCanBeActive() const override; |
| 358 void scrollbarVisibilityChanged() override; | 358 void scrollbarVisibilityChanged() override; |
| 359 void scrollbarFrameRectChanged() override; |
| 359 | 360 |
| 360 // FIXME: Remove this method once plugin loading is decoupled from layout. | 361 // FIXME: Remove this method once plugin loading is decoupled from layout. |
| 361 void flushAnyPendingPostLayoutTasks(); | 362 void flushAnyPendingPostLayoutTasks(); |
| 362 | 363 |
| 363 bool shouldSuspendScrollAnimations() const override; | 364 bool shouldSuspendScrollAnimations() const override; |
| 364 void scrollbarStyleChanged() override; | 365 void scrollbarStyleChanged() override; |
| 365 | 366 |
| 366 LayoutReplaced* embeddedReplacedContent() const; | 367 LayoutReplaced* embeddedReplacedContent() const; |
| 367 | 368 |
| 368 static void setInitialTracksPaintInvalidationsForTesting(bool); | 369 static void setInitialTracksPaintInvalidationsForTesting(bool); |
| (...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 frameViewBase.isFrameView()); | 1260 frameViewBase.isFrameView()); |
| 1260 DEFINE_TYPE_CASTS(FrameView, | 1261 DEFINE_TYPE_CASTS(FrameView, |
| 1261 ScrollableArea, | 1262 ScrollableArea, |
| 1262 scrollableArea, | 1263 scrollableArea, |
| 1263 scrollableArea->isFrameView(), | 1264 scrollableArea->isFrameView(), |
| 1264 scrollableArea.isFrameView()); | 1265 scrollableArea.isFrameView()); |
| 1265 | 1266 |
| 1266 } // namespace blink | 1267 } // namespace blink |
| 1267 | 1268 |
| 1268 #endif // FrameView_h | 1269 #endif // FrameView_h |
| OLD | NEW |