| /external/chromium_org/content/shell/renderer/test_runner/ |
| TestPlugin.cpp | 21 #include "third_party/WebKit/public/web/WebInputEvent.h" 102 void printEventDetails(WebTestDelegate* delegate, const WebInputEvent& event) 104 if (WebInputEvent::isTouchEventType(event.type)) { 109 } else if (WebInputEvent::isMouseEventType(event.type) || event.type == WebInputEvent::MouseWheel) { 114 } else if (WebInputEvent::isGestureEventType(event.type)) { 584 bool TestPlugin::handleInputEvent(const WebInputEvent& event, WebCursorInfo& info) 588 case WebInputEvent::Undefined: eventName = "unknown"; break; 590 case WebInputEvent::MouseDown: eventName = "MouseDown"; break; 591 case WebInputEvent::MouseUp: eventName = "MouseUp"; break [all...] |
| /external/chromium_org/content/common/input/ |
| touch_event_stream_validator.cc | 10 using blink::WebInputEvent; 82 if (event.type != WebInputEvent::TouchEnd) 87 if (event.type != WebInputEvent::TouchStart) 92 if (event.type != WebInputEvent::TouchMove) 100 if (event.type != WebInputEvent::TouchCancel)
|
| /external/chromium_org/content/browser/renderer_host/input/ |
| touch_emulator_unittest.cc | 23 using blink::WebInputEvent; 80 int expectedCancelable = event.type != WebInputEvent::TouchCancel; 95 return shift_pressed_ ? WebInputEvent::ShiftKey : 0; 118 void SendKeyboardEvent(WebInputEvent::Type type) { 129 SendKeyboardEvent(WebInputEvent::KeyDown); 135 SendKeyboardEvent(WebInputEvent::KeyUp); 138 void SendMouseEvent(WebInputEvent::Type type, int x, int y) { 154 event.type = WebInputEvent::MouseWheel; 163 SendMouseEvent(WebInputEvent::MouseMove, x, y); 165 SendMouseEvent(WebInputEvent::MouseDown, x, y) [all...] |
| web_input_event_util.cc | 13 using blink::WebInputEvent; 136 WebInputEvent::Type ToWebInputEventType(MotionEvent::Action action) { 139 return WebInputEvent::TouchStart; 141 return WebInputEvent::TouchMove; 143 return WebInputEvent::TouchEnd; 145 return WebInputEvent::TouchCancel; 147 return WebInputEvent::TouchStart; 149 return WebInputEvent::TouchEnd; 152 return WebInputEvent::Undefined; 248 gesture.type = WebInputEvent::GestureShowPress [all...] |
| input_router_impl.h | 106 void FilterAndSendWebInputEvent(const blink::WebInputEvent& input_event, 113 void OfferToHandlers(const blink::WebInputEvent& input_event, 118 bool OfferToOverscrollController(const blink::WebInputEvent& input_event, 122 bool OfferToClient(const blink::WebInputEvent& input_event, 127 bool OfferToRenderer(const blink::WebInputEvent& input_event, 169 void ProcessInputEventAck(blink::WebInputEvent::Type event_type, 175 void ProcessKeyboardAck(blink::WebInputEvent::Type type, 179 void ProcessMouseAck(blink::WebInputEvent::Type type, 189 void ProcessGestureAck(blink::WebInputEvent::Type type,
|
| touch_input_browsertest.cc | 20 #include "third_party/WebKit/public/web/WebInputEvent.h" 24 using blink::WebInputEvent; 87 type_(WebInputEvent::Undefined), 90 void WaitForAck(WebInputEvent::Type type) { 93 base::AutoReset<WebInputEvent::Type> reset_type(&type_, type); 103 void ReceivedEventAck(WebInputEvent::Type type, InputEventAckState state) { 115 WebInputEvent::Type type = params.a.type; 125 WebInputEvent::Type type_; 184 filter()->WaitForAck(WebInputEvent::TouchStart); 210 filter()->WaitForAck(WebInputEvent::TouchStart) [all...] |
| web_input_event_util_posix.cc | 25 blink::WebInputEvent::Modifiers GetLocationModifiersFromWindowsKeyCode( 39 return static_cast<blink::WebInputEvent::Modifiers>(0);
|
| mock_input_ack_handler.cc | 12 using blink::WebInputEvent; 24 ack_event_type_(WebInputEvent::Undefined), 77 void MockInputAckHandler::RecordAckCalled(blink::WebInputEvent::Type type,
|
| mock_input_ack_handler.h | 50 blink::WebInputEvent::Type ack_event_type() const { return ack_event_type_; } 66 void RecordAckCalled(blink::WebInputEvent::Type eventType, 73 blink::WebInputEvent::Type ack_event_type_;
|
| synthetic_gesture_target_aura.cc | 66 WebMouseEventTypeToEventType(blink::WebInputEvent::Type web_type) { 68 case blink::WebInputEvent::MouseDown: 71 case blink::WebInputEvent::MouseUp: 74 case blink::WebInputEvent::MouseMove: 77 case blink::WebInputEvent::MouseEnter: 80 case blink::WebInputEvent::MouseLeave: 83 case blink::WebInputEvent::ContextMenu: 84 NOTREACHED() << "WebInputEvent::ContextMenu not supported by"
|
| input_router_impl.cc | 37 using blink::WebInputEvent; 111 if (mouse_event.event.type == WebInputEvent::MouseDown && 115 if (mouse_event.event.type == WebInputEvent::MouseUp && 207 if (mouse_event.event.type == WebInputEvent::MouseMove) { 237 if (gesture_event.event.type == WebInputEvent::GesturePinchUpdate && 328 const WebInputEvent& input_event, 342 void InputRouterImpl::OfferToHandlers(const WebInputEvent& input_event, 355 if (WebInputEvent::isTouchEventType(input_event.type)) { 369 bool InputRouterImpl::OfferToClient(const WebInputEvent& input_event, 395 bool InputRouterImpl::OfferToRenderer(const WebInputEvent& input_event [all...] |
| /external/chromium_org/third_party/WebKit/Source/web/tests/ |
| ChromeClientImplTest.cpp | 35 #include "public/web/WebInputEvent.h" 47 void setCurrentInputEventForTest(const WebInputEvent* event) 103 event.type = WebInputEvent::MouseUp; 147 int modifiers = WebInputEvent::ShiftKey; 156 int modifiers = WebInputEvent::ShiftKey; 166 int modifiers = WebInputEvent::MetaKey; 168 int modifiers = WebInputEvent::ControlKey; 179 int modifiers = WebInputEvent::MetaKey; 181 int modifiers = WebInputEvent::ControlKey; 192 int modifiers = WebInputEvent::MetaKey [all...] |
| /external/chromium_org/content/renderer/input/ |
| input_handler_proxy.cc | 15 #include "third_party/WebKit/public/web/WebInputEvent.h" 23 using blink::WebInputEvent; 67 DCHECK_EQ(WebInputEvent::GestureScrollUpdate, scroll_update_event.type); 89 DCHECK_EQ(WebInputEvent::GestureFlingStart, fling_start_event.type); 109 scroll_begin_event.type = WebInputEvent::GestureScrollBegin; 115 void SendScrollLatencyUma(const WebInputEvent& event, 117 if (!(event.type == WebInputEvent::GestureScrollBegin || 118 event.type == WebInputEvent::GestureScrollUpdate || 119 event.type == WebInputEvent::GestureScrollUpdateWithoutPropagation)) 171 const WebInputEvent& event [all...] |
| input_handler_manager.h | 23 class WebInputEvent; 54 const blink::WebInputEvent* input_event,
|
| input_handler_proxy.h | 16 #include "third_party/WebKit/public/web/WebInputEvent.h" 40 const blink::WebInputEvent& event, 42 EventDisposition HandleInputEvent(const blink::WebInputEvent& event); 65 bool FilterInputEventForFlingBoosting(const blink::WebInputEvent& event);
|
| /external/chromium_org/content/browser/frame_host/ |
| cross_process_frame_connector.h | 12 class WebInputEvent; 103 void OnForwardInputEvent(const blink::WebInputEvent* event);
|
| /external/chromium_org/content/child/npapi/ |
| webplugin_delegate_impl_android.cc | 13 using blink::WebInputEvent; 75 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
|
| webplugin_delegate_impl_aura.cc | 10 using blink::WebInputEvent; 62 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
|
| /external/chromium_org/content/public/browser/ |
| native_web_keyboard_event.h | 12 #include "third_party/WebKit/public/web/WebInputEvent.h" 40 NativeWebKeyboardEvent(blink::WebInputEvent::Type type, 48 blink::WebInputEvent::Type type,
|
| /external/chromium_org/third_party/WebKit/Source/web/ |
| PageWidgetDelegate.h | 48 class WebInputEvent; 79 static bool handleInputEvent(WebCore::Page*, PageWidgetEventHandler&, const WebInputEvent&);
|
| /external/chromium_org/ui/views/controls/webview/ |
| unhandled_keyboard_event_handler_win.cc | 30 if (event.type == blink::WebInputEvent::Char && ignore_next_char_event_) { 38 if (event.type == blink::WebInputEvent::RawKeyDown) {
|
| /external/chromium_org/content/renderer/ |
| idle_user_detector.cc | 28 void IdleUserDetector::OnHandleInputEvent(const blink::WebInputEvent* event,
|
| /external/chromium_org/content/browser/renderer_host/ |
| ime_adapter_android.cc | 30 #include "third_party/WebKit/public/web/WebInputEvent.h" 40 // |action| will help determine the WebInputEvent type. 53 blink::WebInputEvent::Type type = blink::WebInputEvent::Undefined; 55 type = blink::WebInputEvent::RawKeyDown; 57 type = blink::WebInputEvent::KeyUp; 69 blink::WebInputEvent::RawKeyDown, 70 blink::WebInputEvent::KeyUp, 71 blink::WebInputEvent::Char, 72 blink::WebInputEvent::ShiftKey [all...] |
| /external/chromium_org/third_party/WebKit/public/web/ |
| WebInputEvent.h | 58 // WebInputEvent -------------------------------------------------------------- 60 class WebInputEvent { 161 // into WebCore, so round-tripping from WebInputEvent to a WebCore 186 // Returns true if the WebInputEvent |type| is a mouse event. 192 // Returns true if the WebInputEvent |type| is a keyboard event. 198 // Returns true if the WebInputEvent |type| is a touch event. 204 // Returns true if the WebInputEvent is a gesture event. 211 explicit WebInputEvent(unsigned sizeParam) 223 class WebKeyboardEvent : public WebInputEvent { 270 : WebInputEvent(sizeof(WebKeyboardEvent) [all...] |
| /external/chromium_org/content/public/test/ |
| browser_test_utils.cc | 123 void BuildSimpleWebKeyEvent(blink::WebInputEvent::Type type, 137 if (type == blink::WebInputEvent::Char || 138 type == blink::WebInputEvent::RawKeyDown) { 145 blink::WebInputEvent::Type type, 237 mouse_event.type = blink::WebInputEvent::MouseDown; 248 mouse_event.type = blink::WebInputEvent::MouseUp; 253 blink::WebInputEvent::Type type, 305 modifiers |= blink::WebInputEvent::ControlKey; 308 blink::WebInputEvent::RawKeyDown, 315 modifiers |= blink::WebInputEvent::ShiftKey [all...] |