Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/win/
DWheelEventWin.cpp54 static ULONG scrollChars; in horizontalScrollChars() local
55 if (!scrollChars && !SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0)) in horizontalScrollChars()
56 scrollChars = 1; in horizontalScrollChars()
57 return scrollChars; in horizontalScrollChars()
/external/webkit/Source/WebKit2/Shared/win/
DWebEventFactory.cpp58 static ULONG scrollChars; in horizontalScrollChars() local
59 if (!scrollChars && !::SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0)) in horizontalScrollChars()
60 scrollChars = 1; in horizontalScrollChars()
61 return scrollChars; in horizontalScrollChars()
/external/webkit/Source/WebKit/chromium/src/win/
DWebInputEventFactory.cpp427 unsigned long scrollChars = defaultScrollCharsPerWheelDelta; in mouseWheelEvent() local
428 SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0); in mouseWheelEvent()
431 scrollDelta *= static_cast<float>(scrollChars) * scrollbarPixelsPerLine; in mouseWheelEvent()