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

  /external/chromium_org/content/child/npapi/
plugin_web_event_converter_mac.h 28 bool InitWithEvent(const blink::WebInputEvent& web_event);
40 bool ConvertKeyboardEvent(const blink::WebKeyboardEvent& web_event);
41 bool ConvertMouseEvent(const blink::WebMouseEvent& web_event);
42 bool ConvertMouseWheelEvent(const blink::WebMouseWheelEvent& web_event);
44 // Returns the Cocoa translation of web_event's modifiers.
45 static NSUInteger CocoaModifiers(const blink::WebInputEvent& web_event);
  /external/chromium_org/mojo/services/html_viewer/
blink_input_events_type_converters.cc 61 scoped_ptr<blink::WebMouseEvent> web_event(new blink::WebMouseEvent);
62 web_event->x = event->location_data->in_view_location->x;
63 web_event->y = event->location_data->in_view_location->y;
71 web_event->globalX = event->location_data->screen_location->x;
72 web_event->globalY = event->location_data->screen_location->y;
75 web_event->modifiers = EventFlagsToWebEventModifiers(event->flags);
76 web_event->timeStampSeconds =
79 web_event->button = blink::WebMouseEvent::ButtonNone;
81 web_event->button = blink::WebMouseEvent::ButtonLeft;
83 web_event->button = blink::WebMouseEvent::ButtonMiddle
    [all...]
html_document_view.cc 254 scoped_ptr<blink::WebInputEvent> web_event = local
256 if (web_event)
257 web_view_->handleInputEvent(*web_event);
  /external/chromium_org/content/common/input/
input_event.cc 13 InputEvent::InputEvent(const blink::WebInputEvent& web_event,
16 : web_event(WebInputEventTraits::Clone(web_event)),
input_event.h 24 InputEvent(const blink::WebInputEvent& web_event,
29 ScopedWebInputEvent web_event; member in class:content::InputEvent
scoped_web_input_event.cc 22 void WebInputEventDeleter::operator()(WebInputEvent* web_event) const {
23 WebInputEventTraits::Delete(web_event);
scoped_web_input_event.h 21 void operator()(blink::WebInputEvent* web_event) const;
input_param_traits_unittest.cc 24 EXPECT_EQ(!!a->web_event, !!b->web_event);
25 if (a->web_event && b->web_event) {
26 const size_t a_size = a->web_event->size;
27 ASSERT_EQ(a_size, b->web_event->size);
28 EXPECT_EQ(0, memcmp(a->web_event.get(), b->web_event.get(), a_size));
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.h 58 blink::WebTouchEvent* web_event);
ui_events_helper.cc 248 blink::WebTouchEvent* web_event) {
253 if (web_event->touchesLength < blink::WebTouchEvent::touchesLengthCap) {
254 point = &web_event->touches[web_event->touchesLength++];
265 for (unsigned i = 0; i < web_event->touchesLength; ++i) {
266 point = web_event->touches + i;
297 for (unsigned i = 0; i < web_event->touchesLength; ++i) {
298 blink::WebTouchPoint* iter = web_event->touches + i;
306 web_event);
307 web_event->modifiers = EventFlagsToWebEventModifiers(event.flags())
    [all...]
render_widget_host_view_android.cc 711 blink::WebTouchEvent web_event = CreateWebTouchEventFromMotionEvent(event); local
712 host_->ForwardTouchEventWithLatencyInfo(web_event,
713 CreateLatencyInfo(web_event));
    [all...]
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 124 InputEventData GetEventWithCommonFieldsAndType(const WebInputEvent& web_event) {
126 result.event_type = ConvertEventTypes(web_event.type);
127 result.event_time_stamp = EventTimeToPPTimeTicks(web_event.timeStampSeconds);
321 WebTouchEvent* web_event = new WebTouchEvent(); local
345 type, PPTimeTicksToEventTime(event.event_time_stamp), web_event);
346 web_event->touchesLength = 0;
352 web_event->touches,
353 &web_event->touchesLength);
356 web_event->touches,
357 &web_event->touchesLength)
    [all...]
  /external/chromium_org/content/common/
input_messages.h 71 IPC_STRUCT_TRAITS_MEMBER(web_event)

Completed in 1133 milliseconds