/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerScrollableArea.h | 47 #include "platform/scroll/ScrollableArea.h" 67 class RenderLayerScrollableArea FINAL : public ScrollableArea { 79 virtual ScrollableArea* enclosingScrollableArea() const OVERRIDE;
|
RenderView.cpp | 144 int visibleHeight = frameView->visibleContentRect(ScrollableArea::IncludeScrollbars).height(); [all...] |
RenderLayerModelObject.cpp | 69 ScrollableArea* RenderLayerModelObject::scrollableArea() const 71 return m_layer ? m_layer->scrollableArea() : 0;
|
RenderScrollbar.cpp | 38 PassRefPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, Frame* owningFrame) 40 return adoptRef(new RenderScrollbar(scrollableArea, orientation, ownerNode, owningFrame)); 43 RenderScrollbar::RenderScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, Frame* owningFrame) 44 : Scrollbar(scrollableArea, orientation, RegularScrollbar, RenderScrollbarTheme::renderScrollbarTheme())
|
RenderLayerScrollableArea.cpp | 88 ScrollableArea::setConstrainsScrollingToContentEdge(false); 141 ScrollableArea* RenderLayerScrollableArea::enclosingScrollableArea() const 144 return enclosingScrollableBox->layer()->scrollableArea(); 486 int minPageStep = static_cast<float>(length) * ScrollableArea::minFractionToStepWhenPaging(); 487 int pageStep = max(minPageStep, length - ScrollableArea::maxOverlapBetweenPages()); [all...] |
RenderListBox.cpp | 620 return ScrollableArea::scroll(direction, granularity, multiplier); 879 ScrollableArea* RenderListBox::enclosingScrollableArea() const 910 ScrollableArea::willRemoveScrollbar(m_vBar.get(), VerticalScrollbar);
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXRenderObject.h | 76 ScrollableArea* getScrollableAreaIfScrollable() const;
|
AXScrollView.cpp | 231 ScrollableArea* AXScrollView::getScrollableAreaIfScrollable() const
|
AXObject.h | 54 class ScrollableArea; 567 // If this object itself scrolls, return its ScrollableArea. 568 virtual ScrollableArea* getScrollableAreaIfScrollable() const { return 0; }
|
AXObject.cpp | 731 ScrollableArea* scrollableArea; 732 for (scrollableArea = 0; 733 scrollParent && !(scrollableArea = scrollParent->getScrollableAreaIfScrollable()); 735 if (!scrollableArea) 739 IntPoint scrollPosition = scrollableArea->scrollPosition(); 740 IntRect scrollVisibleRect = scrollableArea->visibleContentRect(); 781 ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable(); 785 IntPoint scrollPosition = scrollableArea->scrollPosition() [all...] |
AXRenderObject.cpp | 248 ScrollableArea* AXRenderObject::getScrollableAreaIfScrollable() const 261 return box->scrollableArea(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
EventHandler.h | 73 class ScrollableArea; 228 ScrollableArea* associatedScrollableArea(const RenderLayer*) const;
|
FocusController.cpp | 682 static void contentAreaDidShowOrHide(ScrollableArea* scrollableArea, bool didShow) 685 scrollableArea->contentAreaDidShow(); 687 scrollableArea->contentAreaDidHide(); 708 const HashSet<ScrollableArea*>* scrollableAreas = frameView->scrollableAreas(); 712 for (HashSet<ScrollableArea*>::const_iterator it = scrollableAreas->begin(), end = scrollableAreas->end(); it != end; ++it) { 713 ScrollableArea* scrollableArea = *it; 714 ASSERT(scrollableArea->scrollbarsCanBeActive()); 716 contentAreaDidShowOrHide(scrollableArea, containingWindowIsVisible) [all...] |
Page.h | 73 class ScrollableArea;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
FrameView.cpp | 203 ScrollableArea::setVerticalScrollElasticity(ScrollElasticityAllowed); 204 ScrollableArea::setHorizontalScrollElasticity(ScrollElasticityAllowed); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollView.cpp | 303 return ScrollableArea::scroll(physicalDirection, granularity); 400 ScrollableArea::setScrollOrigin(IntPoint(scrollOrigin().x(), scrollOrigin().y() - m_horizontalScrollbar->height())); 409 ScrollableArea::setScrollOrigin(IntPoint(scrollOrigin().x() - m_verticalScrollbar->width(), scrollOrigin().y())); 496 ScrollableArea::scrollToOffsetWithoutAnimation(adjustedScrollPosition); [all...] |
ScrollAnimatorNone.cpp | 36 #include "platform/scroll/ScrollableArea.h" 50 PassOwnPtr<ScrollAnimator> ScrollAnimator::create(ScrollableArea* scrollableArea) 52 if (scrollableArea && scrollableArea->scrollAnimatorEnabled()) 53 return adoptPtr(new ScrollAnimatorNone(scrollableArea)); 54 return adoptPtr(new ScrollAnimator(scrollableArea)); 367 ScrollAnimatorNone::ScrollAnimatorNone(ScrollableArea* scrollableArea) 368 : ScrollAnimator(scrollableArea) [all...] |
Scrollbar.cpp | 35 #include "platform/scroll/ScrollableArea.h" 48 PassRefPtr<Scrollbar> Scrollbar::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size) 50 return adoptRef(new Scrollbar(scrollableArea, orientation, size)); 53 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme) 54 : m_scrollableArea(scrollableArea)
|
ScrollView.h | 34 #include "platform/scroll/ScrollableArea.h" 44 class PLATFORM_EXPORT ScrollView : public Widget, public ScrollableArea { 48 // ScrollableArea functions. 58 // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea.
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
ScrollAnimatorMac.mm | 37 #include "platform/scroll/ScrollableArea.h" 187 ScrollableArea* _scrollableArea; 189 - (id)initWithScrollableArea:(ScrollableArea*)scrollableArea; 194 - (id)initWithScrollableArea:(ScrollableArea*)scrollableArea 200 _scrollableArea = scrollableArea; 421 return static_cast<ScrollAnimatorMac*>(_scrollbar->scrollableArea()->scrollAnimator()); 441 return _scrollbar->convertFromContainingView(_scrollbar->scrollableArea()->lastKnownMousePosition()); 453 if (_scrollbar->scrollableArea()->shouldSuspendScrollAnimations() && !mustAnimate) [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
AutofillPopupMenuClient.cpp | 236 ScrollableArea* scrollableArea, 240 return Scrollbar::create(scrollableArea, orientation, size);
|
WebPluginScrollbarImpl.cpp | 70 static_cast<ScrollableArea*>(m_group),
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
PopupMenuTest.cpp | 122 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize) { return 0; }
|
ScrollAnimatorNoneTest.cpp | 38 #include "platform/scroll/ScrollableArea.h" 47 class MockScrollableArea : public ScrollableArea { 61 MOCK_CONST_METHOD0(enclosingScrollableArea, ScrollableArea*()); 86 MockScrollAnimatorNone(ScrollableArea* scrollableArea) 87 : ScrollAnimatorNone(scrollableArea) { } 117 MockScrollableArea scrollableArea(true); 118 MockScrollAnimatorNone scrollAnimatorNone(&scrollableArea); 120 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000)); 121 EXPECT_CALL(scrollableArea, minimumScrollPosition()).Times(AtLeast(1)).WillRepeatedly(Return(IntPoint())) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
MediaQueryEvaluator.cpp | 227 return view->layoutSize(ScrollableArea::IncludeScrollbars);
|