| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 5 * | 5 * |
| 6 * Other contributors: | 6 * Other contributors: |
| 7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
| 9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
| 10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 int scrollSize(ScrollbarOrientation) const override; | 273 int scrollSize(ScrollbarOrientation) const override; |
| 274 IntSize scrollOffsetInt() const override; | 274 IntSize scrollOffsetInt() const override; |
| 275 ScrollOffset getScrollOffset() const override; | 275 ScrollOffset getScrollOffset() const override; |
| 276 IntSize minimumScrollOffsetInt() const override; | 276 IntSize minimumScrollOffsetInt() const override; |
| 277 IntSize maximumScrollOffsetInt() const override; | 277 IntSize maximumScrollOffsetInt() const override; |
| 278 IntRect visibleContentRect( | 278 IntRect visibleContentRect( |
| 279 IncludeScrollbarsInRect = ExcludeScrollbars) const override; | 279 IncludeScrollbarsInRect = ExcludeScrollbars) const override; |
| 280 int visibleHeight() const override; | 280 int visibleHeight() const override; |
| 281 int visibleWidth() const override; | 281 int visibleWidth() const override; |
| 282 IntSize contentsSize() const override; | 282 IntSize contentsSize() const override; |
| 283 void contentsResized() override; |
| 283 bool isScrollable() const override; | 284 bool isScrollable() const override; |
| 284 IntPoint lastKnownMousePosition() const override; | 285 IntPoint lastKnownMousePosition() const override; |
| 285 bool scrollAnimatorEnabled() const override; | 286 bool scrollAnimatorEnabled() const override; |
| 286 bool shouldSuspendScrollAnimations() const override; | 287 bool shouldSuspendScrollAnimations() const override; |
| 287 bool scrollbarsCanBeActive() const override; | 288 bool scrollbarsCanBeActive() const override; |
| 288 void scrollbarVisibilityChanged() override; | 289 void scrollbarVisibilityChanged() override; |
| 290 void scrollbarFrameRectChanged() override; |
| 289 IntRect scrollableAreaBoundingBox() const override; | 291 IntRect scrollableAreaBoundingBox() const override; |
| 290 void registerForAnimation() override; | 292 void registerForAnimation() override; |
| 291 void deregisterForAnimation() override; | 293 void deregisterForAnimation() override; |
| 292 bool userInputScrollable(ScrollbarOrientation) const override; | 294 bool userInputScrollable(ScrollbarOrientation) const override; |
| 293 bool shouldPlaceVerticalScrollbarOnLeft() const override; | 295 bool shouldPlaceVerticalScrollbarOnLeft() const override; |
| 294 int pageStep(ScrollbarOrientation) const override; | 296 int pageStep(ScrollbarOrientation) const override; |
| 295 ScrollBehavior scrollBehaviorStyle() const override; | 297 ScrollBehavior scrollBehaviorStyle() const override; |
| 296 CompositorAnimationHost* compositorAnimationHost() const override; | 298 CompositorAnimationHost* compositorAnimationHost() const override; |
| 297 CompositorAnimationTimeline* compositorAnimationTimeline() const override; | 299 CompositorAnimationTimeline* compositorAnimationTimeline() const override; |
| 298 | 300 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 | 600 |
| 599 DEFINE_TYPE_CASTS(PaintLayerScrollableArea, | 601 DEFINE_TYPE_CASTS(PaintLayerScrollableArea, |
| 600 ScrollableArea, | 602 ScrollableArea, |
| 601 scrollableArea, | 603 scrollableArea, |
| 602 scrollableArea->isPaintLayerScrollableArea(), | 604 scrollableArea->isPaintLayerScrollableArea(), |
| 603 scrollableArea.isPaintLayerScrollableArea()); | 605 scrollableArea.isPaintLayerScrollableArea()); |
| 604 | 606 |
| 605 } // namespace blink | 607 } // namespace blink |
| 606 | 608 |
| 607 #endif // LayerScrollableArea_h | 609 #endif // LayerScrollableArea_h |
| OLD | NEW |