Searched defs:xDelta (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderLayer.cpp1279 int xDelta = currentMousePosition.x() - sourcePoint.x(); local
1282 if (abs(xDelta) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon
1283 xDelta = 0;
1287 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta));
1290 void RenderLayer::scrollByRecursively(int xDelta, int yDelta) argument
1292 if (!xDelta && !yDelta)
1300 int newOffsetX = scrollXOffset() + xDelta;
1324 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta));

Completed in 114 milliseconds