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

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputEventConversion.cpp487 static void updateWebMouseEventFromCoreMouseEvent(const MouseRelatedEvent& event, const Widget& widget, const RenderObject& renderObject, WebMouseEvent& webEvent) argument
489 webEvent.timeStampSeconds = event.timeStamp() / millisPerSecond;
490 webEvent.modifiers = getWebInputModifiers(event);
496 webEvent.globalX = event.screenX();
497 webEvent.globalY = event.screenY();
498 webEvent.windowX = windowPoint.x();
499 webEvent.windowY = windowPoint.y();
501 webEvent.x = localPoint.x();
502 webEvent.y = localPoint.y();
H A DWebDevToolsAgentImpl.cpp506 WebKeyboardEvent webEvent = WebKeyboardEventBuilder(event); local
507 if (!webEvent.keyIdentifier[0] && webEvent.type != WebInputEvent::Char)
508 webEvent.setKeyIdentifierFromWindowsKeyCode();
509 m_webViewImpl->handleInputEvent(webEvent);
519 WebMouseEvent webEvent = WebMouseEventBuilder(m_webViewImpl->mainFrameImpl()->frameView(), event); local
520 m_webViewImpl->handleInputEvent(webEvent);

Completed in 3532 milliseconds