Home
last modified time | relevance | path

Searched refs:noPanScrollRadius (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
DAutoscrollController.cpp265 …bool east = m_panScrollStartPos.x() < (lastKnownMousePosition.x() - ScrollView::noPanScrollRadius); in updatePanScrollState()
266 …bool west = m_panScrollStartPos.x() > (lastKnownMousePosition.x() + ScrollView::noPanScrollRadius); in updatePanScrollState()
267 …ool north = m_panScrollStartPos.y() > (lastKnownMousePosition.y() + ScrollView::noPanScrollRadius); in updatePanScrollState()
268 …ool south = m_panScrollStartPos.y() < (lastKnownMousePosition.y() - ScrollView::noPanScrollRadius); in updatePanScrollState()
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollView.h245 static const int noPanScrollRadius = 15; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBox.cpp936 …if (abs(delta.width()) <= ScrollView::noPanScrollRadius) // at the center we let the space for the… in panScroll()
938 if (abs(delta.height()) <= ScrollView::noPanScrollRadius) in panScroll()