Home | History | Annotate | Download | only in src

Lines Matching defs:scrollDirection

818     ScrollDirection scrollDirection;
829 if (!mapKeyCodeForScroll(keyCode, &scrollDirection, &scrollGranularity))
831 return propagateScroll(scrollDirection, scrollGranularity);
835 WebCore::ScrollDirection* scrollDirection,
840 *scrollDirection = ScrollLeft;
844 *scrollDirection = ScrollRight;
848 *scrollDirection = ScrollUp;
852 *scrollDirection = ScrollDown;
856 *scrollDirection = ScrollUp;
860 *scrollDirection = ScrollDown;
864 *scrollDirection = ScrollUp;
868 *scrollDirection = ScrollDown;
884 bool WebViewImpl::propagateScroll(ScrollDirection scrollDirection,
891 bool scrollHandled = frame->eventHandler()->scrollOverflow(scrollDirection, scrollGranularity);
894 scrollHandled = currentFrame->view()->scroll(scrollDirection, scrollGranularity);