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

/external/webkit/Source/WebCore/platform/
H A DScrollView.h285 static const int noPanScrollRadius = 15; member in class:WebCore::ScrollView
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp842 bool east = m_panScrollStartPos.x() < (m_currentMousePosition.x() - ScrollView::noPanScrollRadius);
843 bool west = m_panScrollStartPos.x() > (m_currentMousePosition.x() + ScrollView::noPanScrollRadius);
844 bool north = m_panScrollStartPos.y() > (m_currentMousePosition.y() + ScrollView::noPanScrollRadius);
845 bool south = m_panScrollStartPos.y() < (m_currentMousePosition.y() - ScrollView::noPanScrollRadius);
/external/webkit/Source/WebCore/rendering/
H A DRenderLayer.cpp1282 if (abs(xDelta) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon
1284 if (abs(yDelta) <= ScrollView::noPanScrollRadius)

Completed in 83 milliseconds