Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.h

Issue 2499853002: Fixed clip resize for document.rootScroller with inertTopControls (Closed)
Patch Set: Fixed typo Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 } 416 }
417 417
418 IntSize maximumScrollOffsetInt() const override; 418 IntSize maximumScrollOffsetInt() const override;
419 419
420 // ScrollableArea interface 420 // ScrollableArea interface
421 void getTickmarks(Vector<IntRect>&) const override; 421 void getTickmarks(Vector<IntRect>&) const override;
422 IntRect scrollableAreaBoundingBox() const override; 422 IntRect scrollableAreaBoundingBox() const override;
423 bool scrollAnimatorEnabled() const override; 423 bool scrollAnimatorEnabled() const override;
424 bool usesCompositedScrolling() const override; 424 bool usesCompositedScrolling() const override;
425 bool shouldScrollOnMainThread() const override; 425 bool shouldScrollOnMainThread() const override;
426 PaintLayer* layer() const override;
426 GraphicsLayer* layerForScrolling() const override; 427 GraphicsLayer* layerForScrolling() const override;
427 GraphicsLayer* layerForHorizontalScrollbar() const override; 428 GraphicsLayer* layerForHorizontalScrollbar() const override;
428 GraphicsLayer* layerForVerticalScrollbar() const override; 429 GraphicsLayer* layerForVerticalScrollbar() const override;
429 GraphicsLayer* layerForScrollCorner() const override; 430 GraphicsLayer* layerForScrollCorner() const override;
430 int scrollSize(ScrollbarOrientation) const override; 431 int scrollSize(ScrollbarOrientation) const override;
431 bool isScrollCornerVisible() const override; 432 bool isScrollCornerVisible() const override;
432 bool userInputScrollable(ScrollbarOrientation) const override; 433 bool userInputScrollable(ScrollbarOrientation) const override;
433 bool shouldPlaceVerticalScrollbarOnLeft() const override; 434 bool shouldPlaceVerticalScrollbarOnLeft() const override;
434 Widget* getWidget() override; 435 Widget* getWidget() override;
435 CompositorAnimationTimeline* compositorAnimationTimeline() const override; 436 CompositorAnimationTimeline* compositorAnimationTimeline() const override;
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 widget.isFrameView()); 1153 widget.isFrameView());
1153 DEFINE_TYPE_CASTS(FrameView, 1154 DEFINE_TYPE_CASTS(FrameView,
1154 ScrollableArea, 1155 ScrollableArea,
1155 scrollableArea, 1156 scrollableArea,
1156 scrollableArea->isFrameView(), 1157 scrollableArea->isFrameView(),
1157 scrollableArea.isFrameView()); 1158 scrollableArea.isFrameView());
1158 1159
1159 } // namespace blink 1160 } // namespace blink
1160 1161
1161 #endif // FrameView_h 1162 #endif // FrameView_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698