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

  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventFactoryTestMac.mm 74 WebKeyboardEvent webEvent = WebInputEventFactory::keyboardEvent(macEvent);
75 EXPECT_EQ(0, webEvent.modifiers);
79 webEvent = WebInputEventFactory::keyboardEvent(macEvent);
80 EXPECT_EQ(0, webEvent.modifiers);
84 webEvent = WebInputEventFactory::keyboardEvent(macEvent);
85 EXPECT_EQ(0, webEvent.modifiers);
89 webEvent = WebInputEventFactory::keyboardEvent(macEvent);
90 EXPECT_EQ(0, webEvent.modifiers);
120 WebKeyboardEvent webEvent = WebInputEventFactory::keyboardEvent(macEvent);
121 EXPECT_EQ(table[i].windowsKeyCode, webEvent.windowsKeyCode)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 741 WebMouseEventBuilder webEvent(this, m_element->renderer(), *event);
742 if (webEvent.type == WebInputEvent::Undefined)
761 if (m_webPlugin->handleInputEvent(webEvent, cursorInfo))
801 WebMouseWheelEventBuilder webEvent(this, m_element->renderer(), *event);
802 if (webEvent.type == WebInputEvent::Undefined)
806 if (m_webPlugin->handleInputEvent(webEvent, cursorInfo))
812 WebKeyboardEventBuilder webEvent(*event);
813 if (webEvent.type == WebInputEvent::Undefined)
816 if (webEvent.type == WebInputEvent::KeyDown) {
818 if (webEvent.modifiers == WebInputEvent::MetaKe
    [all...]
WebDevToolsAgentImpl.cpp 506 WebKeyboardEvent webEvent = WebKeyboardEventBuilder(event);
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);
520 m_webViewImpl->handleInputEvent(webEvent);
WebInputEventConversion.cpp 487 static void updateWebMouseEventFromCoreMouseEvent(const MouseRelatedEvent& event, const Widget& widget, const RenderObject& renderObject, WebMouseEvent& webEvent)
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();
ChromeClientImpl.cpp 861 WebKeyboardEventBuilder webEvent(*static_cast<KeyboardEvent*>(event));
862 webFrame->client()->forwardInputEvent(&webEvent);
864 WebMouseEventBuilder webEvent(webFrame->frameView(), frame->ownerRenderer(), *static_cast<MouseEvent*>(event));
866 if (webEvent.type == WebInputEvent::Undefined)
869 webFrame->client()->forwardInputEvent(&webEvent);
871 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), frame->ownerRenderer(), *static_cast<WheelEvent*>(event));
872 if (webEvent.type == WebInputEvent::Undefined)
874 webFrame->client()->forwardInputEvent(&webEvent);

Completed in 74 milliseconds