HomeSort by relevance Sort by last modified time
    Searched refs:WebInputEvent (Results 51 - 75 of 191) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/content/common/
content_param_traits.cc 13 int WebInputEventSizeForType(WebKit::WebInputEvent::Type type) {
14 if (WebKit::WebInputEvent::isMouseEventType(type))
16 if (type == WebKit::WebInputEvent::MouseWheel)
18 if (WebKit::WebInputEvent::isKeyboardEventType(type))
20 if (WebKit::WebInputEvent::isTouchEventType(type))
22 if (WebKit::WebInputEvent::isGestureEventType(type))
84 if (data_length < static_cast<int>(sizeof(WebKit::WebInputEvent))) {
  /external/chromium_org/third_party/WebKit/Source/web/android/
WebInputEventFactory.cpp 34 #include "WebInputEvent.h"
41 WebKeyboardEvent WebInputEventFactory::keyboardEvent(WebInputEvent::Type type,
91 result.type = WebInputEvent::MouseDown;
95 result.type = WebInputEvent::MouseUp;
99 result.type = WebInputEvent::MouseMove;
116 result.type = WebInputEvent::MouseWheel;
152 WebGestureEvent WebInputEventFactory::gestureEvent(WebInputEvent::Type type,
162 WebGestureEvent WebInputEventFactory::gestureEvent(WebInputEvent::Type type,
  /external/chromium_org/content/renderer/gpu/
input_handler_proxy.cc 12 #include "third_party/WebKit/public/web/WebInputEvent.h"
18 using WebKit::WebInputEvent;
25 void SendScrollLatencyUma(const WebInputEvent& event,
27 if (!(event.type == WebInputEvent::GestureScrollBegin ||
28 event.type == WebInputEvent::GestureScrollUpdate ||
29 event.type == WebInputEvent::GestureScrollUpdateWithoutPropagation))
84 const WebInputEvent& event,
97 const WebInputEvent& event) {
101 if (event.type == WebInputEvent::MouseWheel) {
136 } else if (event.type == WebInputEvent::GestureScrollBegin)
    [all...]
input_handler_proxy_unittest.cc 16 #include "third_party/WebKit/public/web/WebInputEvent.h"
23 using WebKit::WebInputEvent;
168 wheel.type = WebInputEvent::MouseWheel;
183 gesture_.type = WebInputEvent::GestureScrollBegin;
190 gesture_.type = WebInputEvent::GestureScrollUpdate;
203 gesture_.type = WebInputEvent::GestureScrollUpdate;
214 gesture_.type = WebInputEvent::GestureScrollEnd;
228 gesture_.type = WebInputEvent::GestureScrollBegin;
233 gesture_.type = WebInputEvent::GestureScrollUpdate;
239 gesture_.type = WebInputEvent::GestureScrollEnd
    [all...]
input_handler_proxy.h 14 #include "third_party/WebKit/public/web/WebInputEvent.h"
41 const WebKit::WebInputEvent& event,
43 EventDisposition HandleInputEvent(const WebKit::WebInputEvent& event);
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_gtk.cc 18 #include "third_party/WebKit/public/web/WebInputEvent.h"
26 using WebKit::WebInputEvent;
541 // Converts a WebInputEvent::Modifiers bitfield into a
545 if (modifiers & WebInputEvent::ControlKey)
547 if (modifiers & WebInputEvent::ShiftKey)
549 if (modifiers & WebInputEvent::AltKey)
551 if (modifiers & WebInputEvent::MetaKey)
553 if (modifiers & WebInputEvent::LeftButtonDown)
555 if (modifiers & WebInputEvent::MiddleButtonDown)
557 if (modifiers & WebInputEvent::RightButtonDown
    [all...]
webplugin_delegate.h 22 class WebInputEvent;
78 virtual bool HandleInputEvent(const WebKit::WebInputEvent& event,
webplugin_delegate_impl.cc 17 #include "third_party/WebKit/public/web/WebInputEvent.h"
21 using WebKit::WebInputEvent;
257 const WebInputEvent& event,
276 bool WebPluginDelegateImpl::IsUserGesture(const WebInputEvent& event) {
278 case WebInputEvent::MouseDown:
279 case WebInputEvent::MouseUp:
280 case WebInputEvent::KeyDown:
281 case WebInputEvent::KeyUp:
  /external/chromium_org/content/browser/renderer_host/input/
immediate_input_router.h 86 void SendWebInputEvent(const WebKit::WebInputEvent& input_event,
90 // Filters and forwards the given WebInputEvent to |SendWebInputEvent()|. This
92 void FilterAndSendWebInputEvent(const WebKit::WebInputEvent& input_event,
97 void OnInputEventAck(WebKit::WebInputEvent::Type event_type,
107 void ProcessInputEventAck(WebKit::WebInputEvent::Type event_type,
input_router_client.h 12 #include "third_party/WebKit/public/web/WebInputEvent.h"
31 const WebKit::WebInputEvent& input_event,
34 // Called each time a WebInputEvent IPC is sent.
37 // Called each time a WebInputEvent ACK IPC is received.
touch_event_queue.cc 38 if (coalesced_event_.event.type == WebKit::WebInputEvent::TouchMove &&
39 event_with_latency.event.type == WebKit::WebInputEvent::TouchMove &&
137 if (event.type == WebKit::WebInputEvent::TouchEnd ||
138 event.type == WebKit::WebInputEvent::TouchCancel) {
146 } else if (event.type == WebKit::WebInputEvent::TouchStart) {
212 if (event.type == WebKit::WebInputEvent::TouchStart)
  /external/chromium_org/content/browser/android/in_process/
synchronous_input_event_filter.cc 13 using WebKit::WebInputEvent;
25 const WebKit::WebInputEvent& input_event) {
synchronous_compositor_impl.h 23 class WebInputEvent;
46 InputEventAckState HandleInputEvent(const WebKit::WebInputEvent& input_event);
  /external/chromium_org/content/browser/renderer_host/
native_web_keyboard_event_android.cc 33 WebKit::WebInputEvent::Type type,
44 jobject android_key_event, WebKit::WebInputEvent::Type type,
render_widget_host_view_aura_unittest.cc 289 EXPECT_EQ(WebKit::WebInputEvent::TouchStart, view_->touch_event_.type);
296 EXPECT_EQ(WebKit::WebInputEvent::TouchMove, view_->touch_event_.type);
303 EXPECT_EQ(WebKit::WebInputEvent::TouchEnd, view_->touch_event_.type);
314 EXPECT_EQ(WebKit::WebInputEvent::TouchStart, view_->touch_event_.type);
321 EXPECT_EQ(WebKit::WebInputEvent::TouchMove, view_->touch_event_.type);
328 EXPECT_EQ(WebKit::WebInputEvent::TouchEnd, view_->touch_event_.type);
334 EXPECT_EQ(WebKit::WebInputEvent::TouchStart, view_->touch_event_.type);
346 EXPECT_EQ(WebKit::WebInputEvent::TouchMove, view_->touch_event_.type);
355 EXPECT_EQ(WebKit::WebInputEvent::TouchEnd, view_->touch_event_.type);
383 EXPECT_EQ(WebKit::WebInputEvent::TouchStart, view_->touch_event_.type)
    [all...]
web_input_event_aura.cc 68 // The approach is to fully construct a WebKit::WebInputEvent from the
154 // WebInputEvent based on the type of message carried in
211 gesture_event.type = WebKit::WebInputEvent::GestureFlingCancel;
232 webkit_event.type = WebKit::WebInputEvent::MouseDown;
236 webkit_event.type = WebKit::WebInputEvent::MouseUp;
242 webkit_event.type = WebKit::WebInputEvent::MouseMove;
256 webkit_event.type = WebKit::WebInputEvent::MouseWheel;
  /external/chromium_org/content/browser/speech/
speech_recognition_browsertest.cc 24 #include "third_party/WebKit/public/web/WebInputEvent.h"
44 mouse_event.type = WebKit::WebInputEvent::MouseDown;
55 mouse_event.type = WebKit::WebInputEvent::MouseUp;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FakeWebPlugin.h 40 class WebInputEvent;
61 virtual bool handleInputEvent(const WebKit::WebInputEvent&, WebKit::WebCursorInfo&) OVERRIDE { return false; }
  /external/chromium_org/third_party/WebKit/public/web/
WebPlugin.h 48 class WebInputEvent;
89 virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) = 0;
WebWidget.h 44 class WebInputEvent;
140 virtual bool handleInputEvent(const WebInputEvent&) { return false; }
  /external/chromium_org/chrome/renderer/autofill/
page_click_tracker_browsertest.cc 90 keyboard_event.type = WebKit::WebInputEvent::RawKeyDown;
93 keyboard_event.type = WebKit::WebInputEvent::Char;
96 keyboard_event.type = WebKit::WebInputEvent::KeyUp;
  /external/chromium_org/chrome/test/base/
chrome_render_view_test.cc 22 #include "third_party/WebKit/public/web/WebInputEvent.h"
36 using WebKit::WebInputEvent;
  /external/chromium_org/third_party/WebKit/Source/web/
ExternalPopupMenu.h 53 class WebInputEvent;
  /external/chromium_org/content/public/test/
browser_test_utils.cc 120 void BuildSimpleWebKeyEvent(WebKit::WebInputEvent::Type type,
136 if (type == WebKit::WebInputEvent::Char ||
137 type == WebKit::WebInputEvent::RawKeyDown) {
143 event->modifiers |= WebKit::WebInputEvent::ControlKey;
146 event->modifiers |= WebKit::WebInputEvent::ShiftKey;
149 event->modifiers |= WebKit::WebInputEvent::AltKey;
152 event->modifiers |= WebKit::WebInputEvent::MetaKey;
239 mouse_event.type = WebKit::WebInputEvent::MouseDown;
251 mouse_event.type = WebKit::WebInputEvent::MouseUp;
256 WebKit::WebInputEvent::Type type
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_drag_dest_win.cc 18 #include "third_party/WebKit/public/web/WebInputEvent.h"
51 modifier_state |= WebKit::WebInputEvent::ShiftKey;
53 modifier_state |= WebKit::WebInputEvent::ControlKey;
55 modifier_state |= WebKit::WebInputEvent::AltKey;
57 modifier_state |= WebKit::WebInputEvent::MetaKey;
59 modifier_state |= WebKit::WebInputEvent::MetaKey;

Completed in 354 milliseconds

1 23 4 5 6 7 8