| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 IntRect ScrollCornerRect() const override; | 262 IntRect ScrollCornerRect() const override; |
| 263 IntRect ConvertFromScrollbarToContainingFrameView( | 263 IntRect ConvertFromScrollbarToContainingFrameView( |
| 264 const Scrollbar&, | 264 const Scrollbar&, |
| 265 const IntRect&) const override; | 265 const IntRect&) const override; |
| 266 IntPoint ConvertFromScrollbarToContainingFrameView( | 266 IntPoint ConvertFromScrollbarToContainingFrameView( |
| 267 const Scrollbar&, | 267 const Scrollbar&, |
| 268 const IntPoint&) const override; | 268 const IntPoint&) const override; |
| 269 IntPoint ConvertFromContainingFrameViewToScrollbar( | 269 IntPoint ConvertFromContainingFrameViewToScrollbar( |
| 270 const Scrollbar&, | 270 const Scrollbar&, |
| 271 const IntPoint&) const override; | 271 const IntPoint&) const override; |
| 272 IntPoint ConvertFromRootFrame(const IntPoint&) const override; |
| 272 int ScrollSize(ScrollbarOrientation) const override; | 273 int ScrollSize(ScrollbarOrientation) const override; |
| 273 IntSize ScrollOffsetInt() const override; | 274 IntSize ScrollOffsetInt() const override; |
| 274 ScrollOffset GetScrollOffset() const override; | 275 ScrollOffset GetScrollOffset() const override; |
| 275 IntSize MinimumScrollOffsetInt() const override; | 276 IntSize MinimumScrollOffsetInt() const override; |
| 276 IntSize MaximumScrollOffsetInt() const override; | 277 IntSize MaximumScrollOffsetInt() const override; |
| 277 IntRect VisibleContentRect( | 278 IntRect VisibleContentRect( |
| 278 IncludeScrollbarsInRect = kExcludeScrollbars) const override; | 279 IncludeScrollbarsInRect = kExcludeScrollbars) const override; |
| 279 int VisibleHeight() const override; | 280 int VisibleHeight() const override; |
| 280 int VisibleWidth() const override; | 281 int VisibleWidth() const override; |
| 281 IntSize ContentsSize() const override; | 282 IntSize ContentsSize() const override; |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 | 612 |
| 612 DEFINE_TYPE_CASTS(PaintLayerScrollableArea, | 613 DEFINE_TYPE_CASTS(PaintLayerScrollableArea, |
| 613 ScrollableArea, | 614 ScrollableArea, |
| 614 scrollableArea, | 615 scrollableArea, |
| 615 scrollableArea->IsPaintLayerScrollableArea(), | 616 scrollableArea->IsPaintLayerScrollableArea(), |
| 616 scrollableArea.IsPaintLayerScrollableArea()); | 617 scrollableArea.IsPaintLayerScrollableArea()); |
| 617 | 618 |
| 618 } // namespace blink | 619 } // namespace blink |
| 619 | 620 |
| 620 #endif // LayerScrollableArea_h | 621 #endif // LayerScrollableArea_h |
| OLD | NEW |