Home
last modified time | relevance | path

Searched refs:userInputScrollable (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollAnimator.cpp78 bool canScrollX = m_scrollableArea->userInputScrollable(HorizontalScrollbar); in handleWheelEvent()
79 bool canScrollY = m_scrollableArea->userInputScrollable(VerticalScrollbar); in handleWheelEvent()
DScrollableArea.h179 virtual bool userInputScrollable(ScrollbarOrientation) const = 0;
DScrollableArea.cpp111 if (!userInputScrollable(orientation)) in scroll()
DScrollView.cpp138 …layer->setUserScrollable(userInputScrollable(HorizontalScrollbar), userInputScrollable(VerticalScr… in setScrollbarModes()
774 bool ScrollView::userInputScrollable(ScrollbarOrientation orientation) const in userInputScrollable() function in WebCore::ScrollView
DScrollView.h53 virtual bool userInputScrollable(ScrollbarOrientation) const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/web/
DScrollbarGroup.h76 virtual bool userInputScrollable(WebCore::ScrollbarOrientation) const OVERRIDE;
DScrollbarGroup.cpp263 bool ScrollbarGroup::userInputScrollable(ScrollbarOrientation orientation) const in userInputScrollable() function in blink::ScrollbarGroup
/external/chromium_org/third_party/WebKit/Source/web/tests/
DGraphicsLayerTest.cpp134 virtual bool userInputScrollable(ScrollbarOrientation) const OVERRIDE { return true; } in userInputScrollable() function in __anon759da6710111::FakeScrollableArea
DScrollAnimatorNoneTest.cpp70 virtual bool userInputScrollable(ScrollbarOrientation) const OVERRIDE { return true; } in userInputScrollable() function in MockScrollableArea
DWebFrameTest.cpp1443 EXPECT_FALSE(view->userInputScrollable(WebCore::VerticalScrollbar)); in TEST_F()
1463 EXPECT_TRUE(view->userInputScrollable(WebCore::VerticalScrollbar)); in TEST_F()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderListBox.h126 virtual bool userInputScrollable(ScrollbarOrientation) const OVERRIDE;
DRenderLayerScrollableArea.h109 virtual bool userInputScrollable(ScrollbarOrientation) const OVERRIDE;
DRenderListBox.cpp854 bool RenderListBox::userInputScrollable(ScrollbarOrientation orientation) const in userInputScrollable() function in WebCore::RenderListBox
DRenderLayerScrollableArea.cpp467 bool RenderLayerScrollableArea::userInputScrollable(ScrollbarOrientation orientation) const in userInputScrollable() function in WebCore::RenderLayerScrollableArea
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
DScrollingCoordinator.cpp346 bool canScrollX = scrollableArea->userInputScrollable(HorizontalScrollbar); in scrollableAreaScrollLayerDidChange()
347 bool canScrollY = scrollableArea->userInputScrollable(VerticalScrollbar); in scrollableAreaScrollLayerDidChange()