HomeSort by relevance Sort by last modified time
    Searched refs:noPanScrollRadius (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/page/
AutoscrollController.cpp 268 bool east = m_panScrollStartPos.x() < (lastKnownMousePosition.x() - ScrollView::noPanScrollRadius);
269 bool west = m_panScrollStartPos.x() > (lastKnownMousePosition.x() + ScrollView::noPanScrollRadius);
270 bool north = m_panScrollStartPos.y() > (lastKnownMousePosition.y() + ScrollView::noPanScrollRadius);
271 bool south = m_panScrollStartPos.y() < (lastKnownMousePosition.y() - ScrollView::noPanScrollRadius);
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.h 237 static const int noPanScrollRadius = 15;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBox.cpp 830 if (abs(delta.width()) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon
832 if (abs(delta.height()) <= ScrollView::noPanScrollRadius)
    [all...]

Completed in 91 milliseconds