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

  /external/webkit/WebCore/platform/win/
WheelEventWin.cpp 54 static ULONG scrollChars;
55 if (!scrollChars && !SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0))
56 scrollChars = 1;
57 return scrollChars;
  /external/webkit/WebKit/chromium/src/win/
WebInputEventFactory.cpp 410 unsigned long scrollChars = defaultScrollCharsPerWheelDelta;
411 SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0);
414 scrollDelta *= static_cast<float>(scrollChars) * scrollbarPixelsPerLine;

Completed in 73 milliseconds