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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentPrivate.h 38 class WebInputEvent;
61 virtual bool handleInputEvent(WebCore::Page*, const WebInputEvent&) = 0;
PageWidgetDelegate.cpp 35 #include "WebInputEvent.h"
106 bool PageWidgetDelegate::handleInputEvent(Page* page, PageWidgetEventHandler& handler, const WebInputEvent& event)
114 case WebInputEvent::MouseMove:
119 case WebInputEvent::MouseLeave:
124 case WebInputEvent::MouseDown:
129 case WebInputEvent::MouseUp:
135 case WebInputEvent::MouseWheel:
140 case WebInputEvent::RawKeyDown:
141 case WebInputEvent::KeyDown:
142 case WebInputEvent::KeyUp
    [all...]
WebPopupMenuImpl.cpp 36 #include "WebInputEvent.h"
208 bool WebPopupMenuImpl::handleInputEvent(const WebInputEvent& inputEvent)
217 case WebInputEvent::MouseMove:
221 case WebInputEvent::MouseLeave:
225 case WebInputEvent::MouseWheel:
229 case WebInputEvent::MouseDown:
233 case WebInputEvent::MouseUp:
245 case WebInputEvent::RawKeyDown:
246 case WebInputEvent::KeyDown:
247 case WebInputEvent::KeyUp
    [all...]
WebInputEventConversion.cpp 34 #include "WebInputEvent.h"
82 if (e.modifiers & WebInputEvent::ShiftKey)
84 if (e.modifiers & WebInputEvent::ControlKey)
86 if (e.modifiers & WebInputEvent::AltKey)
88 if (e.modifiers & WebInputEvent::MetaKey)
96 case WebInputEvent::MouseMove:
97 case WebInputEvent::MouseLeave: // synthesize a move event
101 case WebInputEvent::MouseDown:
105 case WebInputEvent::MouseUp:
131 if (e.modifiers & WebInputEvent::ShiftKey
    [all...]
WebPluginScrollbarImpl.h 84 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE;
89 bool onMouseDown(const WebInputEvent&);
90 bool onMouseUp(const WebInputEvent&);
91 bool onMouseMove(const WebInputEvent&);
92 bool onMouseLeave(const WebInputEvent&);
93 bool onMouseWheel(const WebInputEvent&);
94 bool onKeyDown(const WebInputEvent&);
WebPluginScrollbarImpl.cpp 29 #include "WebInputEvent.h"
239 bool WebPluginScrollbarImpl::handleInputEvent(const WebInputEvent& event)
242 case WebInputEvent::MouseDown:
244 case WebInputEvent::MouseUp:
246 case WebInputEvent::MouseMove:
248 case WebInputEvent::MouseLeave:
250 case WebInputEvent::MouseWheel:
252 case WebInputEvent::KeyDown:
254 case WebInputEvent::Undefined:
255 case WebInputEvent::MouseEnter
    [all...]
  /external/chromium_org/content/renderer/pepper/
event_conversion.h 12 #include "third_party/WebKit/public/web/WebInputEvent.h"
22 class WebInputEvent;
30 void CreateInputEventData(const WebKit::WebInputEvent& event,
33 // Creates a WebInputEvent from the given PP_InputEvent. If it fails, returns
35 WebKit::WebInputEvent* CreateWebInputEvent(const ppapi::InputEventData& event);
40 std::vector<linked_ptr<WebKit::WebInputEvent> > CreateSimulatedWebInputEvents(
47 PP_InputEvent_Class ClassifyInputEvent(WebKit::WebInputEvent::Type type);
event_conversion.cc 24 #include "third_party/WebKit/public/web/WebInputEvent.h"
29 using WebKit::WebInputEvent;
46 static_cast<int>(WebInputEvent::ShiftKey),
49 static_cast<int>(WebInputEvent::ControlKey),
52 static_cast<int>(WebInputEvent::AltKey),
55 static_cast<int>(WebInputEvent::MetaKey),
58 static_cast<int>(WebInputEvent::IsKeyPad),
61 static_cast<int>(WebInputEvent::IsAutoRepeat),
64 static_cast<int>(WebInputEvent::LeftButtonDown),
67 static_cast<int>(WebInputEvent::MiddleButtonDown)
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_web_event_converter_mac.h 11 class WebInputEvent;
19 // Utility class to translating WebInputEvent structs to equivalent structures
28 bool InitWithEvent(const WebKit::WebInputEvent& web_event);
45 static NSUInteger CocoaModifiers(const WebKit::WebInputEvent& web_event);
  /external/chromium_org/content/renderer/
idle_user_detector.h 12 class WebInputEvent;
32 void OnHandleInputEvent(const WebKit::WebInputEvent* event,
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_win.cc 10 using WebKit::WebInputEvent;
29 modifier = WebInputEvent::IsKeyPad;
42 modifier = WebInputEvent::IsKeyPad;
61 modifier = WebInputEvent::IsKeyPad;
65 modifier = WebInputEvent::IsLeft;
67 modifier = WebInputEvent::IsRight;
71 modifier = WebInputEvent::IsLeft;
73 modifier = WebInputEvent::IsRight;
77 modifier = WebInputEvent::IsLeft;
79 modifier = WebInputEvent::IsRight
    [all...]
gesture_event_filter.cc 15 using WebKit::WebInputEvent;
84 if (it->event.type == WebInputEvent::GestureFlingStart)
86 if (it->event.type == WebInputEvent::GestureFlingCancel)
98 case WebInputEvent::GestureScrollUpdate:
112 case WebInputEvent::GesturePinchBegin:
113 case WebInputEvent::GesturePinchEnd:
114 case WebInputEvent::GesturePinchUpdate:
142 return gesture_event.event.type != WebInputEvent::GestureFlingStart ||
150 return gesture_event.event.type != WebInputEvent::GestureFlingCancel ||
157 case WebInputEvent::GestureFlingCancel
    [all...]
web_input_event_util_posix.h 8 #include "third_party/WebKit/public/web/WebInputEvent.h"
14 WebKit::WebInputEvent::Modifiers GetLocationModifiersFromWindowsKeyCode(
web_input_event_builders_android.cc 15 using WebKit::WebInputEvent;
21 WebKeyboardEvent WebKeyboardEventBuilder::Build(WebInputEvent::Type type,
27 DCHECK(WebInputEvent::isKeyboardEventType(type));
51 WebMouseEvent WebMouseEventBuilder::Build(WebKit::WebInputEvent::Type type,
58 DCHECK(WebInputEvent::isMouseEventType(type));
70 if (type == WebInputEvent::MouseDown || type == WebInputEvent::MouseUp)
84 result.type = WebInputEvent::MouseWheel;
117 WebGestureEvent WebGestureEventBuilder::Build(WebInputEvent::Type type,
121 DCHECK(WebInputEvent::isGestureEventType(type))
    [all...]
web_input_event_builders_android.h 8 #include "third_party/WebKit/public/web/WebInputEvent.h"
14 static WebKit::WebMouseEvent Build(WebKit::WebInputEvent::Type type,
40 static WebKit::WebKeyboardEvent Build(WebKit::WebInputEvent::Type type,
50 static WebKit::WebGestureEvent Build(WebKit::WebInputEvent::Type type,
  /external/chromium_org/third_party/WebKit/Source/web/win/
WebInputEventFactory.cpp 34 #include "WebInputEvent.h"
56 modifier = WebInputEvent::IsKeyPad;
69 modifier = WebInputEvent::IsKeyPad;
88 modifier = WebInputEvent::IsKeyPad;
92 modifier = WebInputEvent::IsLeft;
94 modifier = WebInputEvent::IsRight;
98 modifier = WebInputEvent::IsLeft;
100 modifier = WebInputEvent::IsRight;
104 modifier = WebInputEvent::IsLeft;
106 modifier = WebInputEvent::IsRight
    [all...]
  /external/chromium_org/content/browser/android/in_process/
synchronous_input_event_filter.h 16 class WebInputEvent;
32 const WebKit::WebInputEvent& input_event);
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 28 const WebKit::WebInputEvent& event,
32 case WebKit::WebInputEvent::GestureScrollEnd:
33 case WebKit::WebInputEvent::GestureFlingStart:
37 case WebKit::WebInputEvent::MouseWheel: {
49 if (WebKit::WebInputEvent::isMouseEventType(event.type) ||
50 WebKit::WebInputEvent::isKeyboardEventType(event.type)) {
97 if (event.type == WebKit::WebInputEvent::TouchEnd ||
98 event.type == WebKit::WebInputEvent::TouchCancel ||
99 event.type == WebKit::WebInputEvent::TouchMove) {
108 void OverscrollController::ReceivedEventACK(const WebKit::WebInputEvent& event
    [all...]
overscroll_controller.h 10 #include "third_party/WebKit/public/web/WebInputEvent.h"
48 bool WillDispatchEvent(const WebKit::WebInputEvent& event,
53 void ReceivedEventACK(const WebKit::WebInputEvent& event, bool processed);
86 const WebKit::WebInputEvent& event) const;
90 bool DispatchEventResetsState(const WebKit::WebInputEvent& event) const;
93 void ProcessEventForOverscroll(const WebKit::WebInputEvent& event);
109 bool ShouldForwardToHost(const WebKit::WebInputEvent& event) const;
ui_events_helper.cc 7 #include "third_party/WebKit/public/web/WebInputEvent.h"
16 if (modifiers & WebKit::WebInputEvent::ShiftKey)
18 if (modifiers & WebKit::WebInputEvent::ControlKey)
20 if (modifiers & WebKit::WebInputEvent::AltKey)
23 if (modifiers & WebKit::WebInputEvent::LeftButtonDown)
25 if (modifiers & WebKit::WebInputEvent::RightButtonDown)
27 if (modifiers & WebKit::WebInputEvent::MiddleButtonDown)
30 if (modifiers & WebKit::WebInputEvent::CapsLockOn)
72 WebKit::WebInputEvent::Type TouchEventTypeFromEvent(
76 return WebKit::WebInputEvent::TouchStart
    [all...]
native_web_keyboard_event_aura.cc 23 (flags & ui::EF_SHIFT_DOWN ? WebKit::WebInputEvent::ShiftKey : 0) |
24 (flags & ui::EF_CONTROL_DOWN ? WebKit::WebInputEvent::ControlKey : 0) |
25 (flags & ui::EF_CAPS_LOCK_DOWN ? WebKit::WebInputEvent::CapsLockOn : 0) |
26 (flags & ui::EF_ALT_DOWN ? WebKit::WebInputEvent::AltKey : 0);
64 type = is_char ? WebKit::WebInputEvent::Char :
65 WebKit::WebInputEvent::RawKeyDown;
68 type = WebKit::WebInputEvent::KeyUp;
  /external/chromium_org/content/renderer/gpu/
input_handler_manager_client.h 24 class WebInputEvent;
38 const WebKit::WebInputEvent*,
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginScrollbar.h 33 class WebInputEvent;
71 virtual bool handleInputEvent(const WebInputEvent&) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
KeyboardTest.cpp 36 #include "WebInputEvent.h"
71 keyboardEvent->type = WebInputEvent::KeyDown;
83 WebInputEvent::Modifiers osModifier = WebInputEvent::MetaKey;
85 WebInputEvent::Modifiers osModifier = WebInputEvent::ControlKey;
95 setupKeyDownEvent(&keyboardEvent, keyCode, WebInputEvent::ControlKey);
183 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey));
193 EXPECT_STREQ("InsertNewline", interpretNewLine(WebInputEvent::ControlKey));
198 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey))
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/android/
WebInputEventFactory.h 35 #include "../WebInputEvent.h"
56 WEBKIT_EXPORT static WebKeyboardEvent keyboardEvent(WebInputEvent::Type,
76 WEBKIT_EXPORT static WebGestureEvent gestureEvent(WebInputEvent::Type,
84 WEBKIT_EXPORT static WebGestureEvent gestureEvent(WebInputEvent::Type,

Completed in 231 milliseconds

1 2 3 4 5 6 7 8