| /external/chromium_org/content/browser/renderer_host/ |
| ui_events_helper.cc | 7 #include "third_party/WebKit/public/web/WebInputEvent.h" 16 if (modifiers & blink::WebInputEvent::ShiftKey) 18 if (modifiers & blink::WebInputEvent::ControlKey) 20 if (modifiers & blink::WebInputEvent::AltKey) 23 if (modifiers & blink::WebInputEvent::LeftButtonDown) 25 if (modifiers & blink::WebInputEvent::RightButtonDown) 27 if (modifiers & blink::WebInputEvent::MiddleButtonDown) 30 if (modifiers & blink::WebInputEvent::CapsLockOn) 72 blink::WebInputEvent::Type TouchEventTypeFromEvent( 76 return blink::WebInputEvent::TouchStart [all...] |
| native_web_keyboard_event_aura.cc | 23 (flags & ui::EF_SHIFT_DOWN ? blink::WebInputEvent::ShiftKey : 0) | 24 (flags & ui::EF_CONTROL_DOWN ? blink::WebInputEvent::ControlKey : 0) | 25 (flags & ui::EF_CAPS_LOCK_DOWN ? blink::WebInputEvent::CapsLockOn : 0) | 26 (flags & ui::EF_ALT_DOWN ? blink::WebInputEvent::AltKey : 0); 64 type = is_char ? blink::WebInputEvent::Char : 65 blink::WebInputEvent::RawKeyDown; 68 type = blink::WebInputEvent::KeyUp;
|
| web_input_event_aurax11.cc | 103 webkit_event.type = event->is_char() ? blink::WebInputEvent::Char : 104 blink::WebInputEvent::RawKeyDown; 107 webkit_event.type = blink::WebInputEvent::KeyUp; 113 if (webkit_event.modifiers & blink::WebInputEvent::AltKey) 124 if (webkit_event.modifiers & blink::WebInputEvent::ControlKey) { 128 webkit_event.modifiers & blink::WebInputEvent::ShiftKey);
|
| ime_adapter_android.cc | 20 #include "third_party/WebKit/public/web/WebInputEvent.h" 30 // |action| will help determine the WebInputEvent type. 43 blink::WebInputEvent::Type type = blink::WebInputEvent::Undefined; 45 type = blink::WebInputEvent::RawKeyDown; 47 type = blink::WebInputEvent::KeyUp; 59 blink::WebInputEvent::RawKeyDown, 60 blink::WebInputEvent::KeyUp, 61 blink::WebInputEvent::Char, 62 blink::WebInputEvent::ShiftKey [all...] |
| /external/chromium_org/content/common/input/ |
| synthetic_web_input_event_builders.cc | 12 using blink::WebInputEvent; 21 blink::WebInputEvent::Type type) { 28 blink::WebInputEvent::Type type, 32 DCHECK(WebInputEvent::isMouseEventType(type)); 40 if (type == WebInputEvent::MouseDown || type == WebInputEvent::MouseUp) 51 result.type = WebInputEvent::MouseWheel; 61 result.type = WebInputEvent::MouseWheel; 74 WebInputEvent::Type type) { 75 DCHECK(WebInputEvent::isKeyboardEventType(type)) [all...] |
| synthetic_web_input_event_builders.h | 10 #include "third_party/WebKit/public/web/WebInputEvent.h" 18 static blink::WebMouseEvent Build(blink::WebInputEvent::Type type); 19 static blink::WebMouseEvent Build(blink::WebInputEvent::Type type, 37 static blink::WebKeyboardEvent Build(blink::WebInputEvent::Type type); 43 blink::WebInputEvent::Type type, 77 static SyntheticWebTouchEvent Build(blink::WebInputEvent::Type type);
|
| input_event.cc | 13 InputEvent::InputEvent(const blink::WebInputEvent& web_event,
|
| /external/chromium_org/third_party/WebKit/Source/web/ |
| WebPluginScrollbarImpl.h | 83 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE; 88 bool onMouseDown(const WebInputEvent&); 89 bool onMouseUp(const WebInputEvent&); 90 bool onMouseMove(const WebInputEvent&); 91 bool onMouseLeave(const WebInputEvent&); 92 bool onMouseWheel(const WebInputEvent&); 93 bool onKeyDown(const WebInputEvent&);
|
| WebPluginScrollbarImpl.cpp | 29 #include "WebInputEvent.h" 244 bool WebPluginScrollbarImpl::handleInputEvent(const WebInputEvent& event) 247 case WebInputEvent::MouseDown: 249 case WebInputEvent::MouseUp: 251 case WebInputEvent::MouseMove: 253 case WebInputEvent::MouseLeave: 255 case WebInputEvent::MouseWheel: 257 case WebInputEvent::KeyDown: 259 case WebInputEvent::Undefined: 260 case WebInputEvent::MouseEnter [all...] |
| WebInputEventFactoryGtk.cpp | 37 #include "WebInputEvent.h" 103 modifiers |= WebInputEvent::ShiftKey; 105 modifiers |= WebInputEvent::ControlKey; 107 modifiers |= WebInputEvent::AltKey; 109 modifiers |= WebInputEvent::MetaKey; 111 modifiers |= WebInputEvent::LeftButtonDown; 113 modifiers |= WebInputEvent::MiddleButtonDown; 115 modifiers |= WebInputEvent::RightButtonDown; 117 modifiers |= WebInputEvent::CapsLockOn; 119 modifiers |= WebInputEvent::NumLockOn [all...] |
| /external/chromium_org/content/browser/renderer_host/input/ |
| web_input_event_builders_android.h | 8 #include "third_party/WebKit/public/web/WebInputEvent.h" 14 static blink::WebMouseEvent Build(blink::WebInputEvent::Type type, 40 static blink::WebKeyboardEvent Build(blink::WebInputEvent::Type type, 50 static blink::WebGestureEvent Build(blink::WebInputEvent::Type type,
|
| input_router_impl_unittest.cc | 34 using blink::WebInputEvent; 44 const WebInputEvent* GetInputEventFromMessage(const IPC::Message& message) { 50 return reinterpret_cast<const WebInputEvent*>(data); 140 void SimulateKeyboardEvent(WebInputEvent::Type type, bool is_shortcut) { 159 WebInputEvent::MouseMove, x, y, modifiers), 173 void SimulateGestureEvent(WebInputEvent::Type type, 205 void SimulateTouchEvent(WebInputEvent::Type type) { 209 case WebInputEvent::TouchStart: 212 case WebInputEvent::TouchMove: 215 case WebInputEvent::TouchEnd [all...] |
| input_router_impl.cc | 36 using blink::WebInputEvent; 59 GestureEventWithLatencyInfo MakeGestureEvent(WebInputEvent::Type type, 148 if (mouse_event.event.type == WebInputEvent::MouseDown && 152 if (mouse_event.event.type == WebInputEvent::MouseUp && 230 if (mouse_event.event.type == WebInputEvent::MouseMove) { 335 const WebInputEvent& input_event, 346 if (input_event.type != WebInputEvent::MouseWheel) { 362 void InputRouterImpl::OfferToHandlers(const WebInputEvent& input_event, 383 const WebInputEvent& input_event, 395 DCHECK(WebInputEvent::isGestureEventType(input_event.type)) [all...] |
| input_router_impl.h | 95 void FilterAndSendWebInputEvent(const blink::WebInputEvent& input_event, 102 void OfferToHandlers(const blink::WebInputEvent& input_event, 107 bool OfferToOverscrollController(const blink::WebInputEvent& input_event, 111 bool OfferToClient(const blink::WebInputEvent& input_event, 116 bool OfferToRenderer(const blink::WebInputEvent& input_event, 121 void OnInputEventAck(blink::WebInputEvent::Type event_type, 140 void ProcessInputEventAck(blink::WebInputEvent::Type event_type, 146 void ProcessKeyboardAck(blink::WebInputEvent::Type type, 150 void ProcessMouseAck(blink::WebInputEvent::Type type, 160 void ProcessGestureAck(blink::WebInputEvent::Type type [all...] |
| input_router_client.h | 12 #include "third_party/WebKit/public/web/WebInputEvent.h" 33 const blink::WebInputEvent& input_event, 36 // Called each time a WebInputEvent IPC is sent. 39 // Called each time a WebInputEvent ACK IPC is received.
|
| synthetic_gesture_target_base.cc | 12 #include "third_party/WebKit/public/web/WebInputEvent.h" 16 using blink::WebInputEvent; 46 const WebInputEvent* web_event = event.web_event.get(); 47 if (WebInputEvent::isTouchEventType(web_event->type)) { 54 } else if (web_event->type == WebInputEvent::MouseWheel) { 61 } else if (WebInputEvent::isMouseEventType(web_event->type)) {
|
| touch_input_browsertest.cc | 19 #include "third_party/WebKit/public/web/WebInputEvent.h" 23 using blink::WebInputEvent; 85 : type_(WebInputEvent::Undefined), 88 void WaitForAck(WebInputEvent::Type type) { 91 base::AutoReset<WebInputEvent::Type> reset_type(&type_, type); 101 void ReceivedEventAck(WebInputEvent::Type type, InputEventAckState state) { 113 WebInputEvent::Type type = WebInputEvent::Undefined; 124 WebInputEvent::Type type_; 200 filter()->WaitForAck(WebInputEvent::TouchStart) [all...] |
| touch_action_filter_unittest.cc | 10 #include "third_party/WebKit/public/web/WebInputEvent.h" 13 using blink::WebInputEvent; 21 WebInputEvent::GestureScrollBegin, WebGestureEvent::Touchscreen); 25 WebInputEvent::GestureScrollEnd, WebGestureEvent::Touchscreen); 27 WebInputEvent::GestureTap, WebGestureEvent::Touchscreen); 77 WebInputEvent::GestureScrollBegin, WebGestureEvent::Touchscreen); 81 WebInputEvent::GestureScrollEnd, WebGestureEvent::Touchscreen);
|
| web_input_event_builders_gtk.cc | 13 #include "third_party/WebKit/public/web/WebInputEvent.h" 16 using blink::WebInputEvent; 72 modifiers |= WebInputEvent::ShiftKey; 74 modifiers |= WebInputEvent::ControlKey; 76 modifiers |= WebInputEvent::AltKey; 78 modifiers |= WebInputEvent::MetaKey; 80 modifiers |= WebInputEvent::LeftButtonDown; 82 modifiers |= WebInputEvent::MiddleButtonDown; 84 modifiers |= WebInputEvent::RightButtonDown; 86 modifiers |= WebInputEvent::CapsLockOn [all...] |
| /external/chromium_org/third_party/WebKit/Source/web/tests/ |
| KeyboardTest.cpp | 35 #include "WebInputEvent.h" 70 keyboardEvent->type = WebInputEvent::KeyDown; 82 WebInputEvent::Modifiers osModifier = WebInputEvent::MetaKey; 84 WebInputEvent::Modifiers osModifier = WebInputEvent::ControlKey; 94 setupKeyDownEvent(&keyboardEvent, keyCode, WebInputEvent::ControlKey); 182 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey)); 192 EXPECT_STREQ("InsertNewline", interpretNewLine(WebInputEvent::ControlKey)); 197 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey)) [all...] |
| ChromeClientImplTest.cpp | 35 #include "WebInputEvent.h" 46 void setCurrentInputEventForTest(const WebInputEvent* event) 107 event.type = WebInputEvent::MouseUp; 151 int modifiers = WebInputEvent::ShiftKey; 160 int modifiers = WebInputEvent::ShiftKey; 170 int modifiers = WebInputEvent::MetaKey; 172 int modifiers = WebInputEvent::ControlKey; 183 int modifiers = WebInputEvent::MetaKey; 185 int modifiers = WebInputEvent::ControlKey; 196 int modifiers = WebInputEvent::MetaKey [all...] |
| /external/chromium_org/third_party/WebKit/public/web/android/ |
| WebInputEventFactory.h | 35 #include "../WebInputEvent.h" 56 BLINK_EXPORT static WebKeyboardEvent keyboardEvent(WebInputEvent::Type, 76 BLINK_EXPORT static WebGestureEvent gestureEvent(WebInputEvent::Type, 84 BLINK_EXPORT static WebGestureEvent gestureEvent(WebInputEvent::Type,
|
| /external/chromium_org/ui/views/controls/webview/ |
| unhandled_keyboard_event_handler_linux.cc | 31 if (event.type == blink::WebInputEvent::Char && ignore_next_char_event_) { 39 if (event.type == blink::WebInputEvent::RawKeyDown) {
|
| /external/chromium_org/third_party/WebKit/Source/testing/runner/ |
| TestPlugin.cpp | 34 #include "public/web/WebInputEvent.h" 113 void printEventDetails(WebTestDelegate* delegate, const WebInputEvent& event) 115 if (WebInputEvent::isTouchEventType(event.type)) { 120 } else if (WebInputEvent::isMouseEventType(event.type) || event.type == WebInputEvent::MouseWheel) { 125 } else if (WebInputEvent::isGestureEventType(event.type)) { 493 bool TestPlugin::handleInputEvent(const WebInputEvent& event, WebCursorInfo& info) 497 case WebInputEvent::Undefined: eventName = "unknown"; break; 499 case WebInputEvent::MouseDown: eventName = "MouseDown"; break; 500 case WebInputEvent::MouseUp: eventName = "MouseUp"; break [all...] |
| /external/chromium_org/content/renderer/ |
| render_widget_fullscreen_pepper.cc | 34 using blink::WebInputEvent; 70 case WebInputEvent::GestureScrollBegin: 71 mouse.type = WebInputEvent::MouseDown; 74 case WebInputEvent::GestureScrollUpdate: 75 mouse.type = WebInputEvent::MouseMove; 78 case WebInputEvent::GestureFlingStart: 84 mouse.type = WebInputEvent::MouseUp; 89 case WebInputEvent::GestureScrollEnd: 90 mouse.type = WebInputEvent::MouseUp; 97 if (mouse.type == WebInputEvent::Undefined [all...] |