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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/content/common/input/
web_input_event_traits.h 10 #include "third_party/WebKit/public/web/WebInputEvent.h"
17 static const char* GetName(blink::WebInputEvent::Type type);
18 static size_t GetSize(blink::WebInputEvent::Type type);
19 static ScopedWebInputEvent Clone(const blink::WebInputEvent& event);
20 static void Delete(blink::WebInputEvent* event);
21 static bool CanCoalesce(const blink::WebInputEvent& event_to_coalesce,
22 const blink::WebInputEvent& event);
23 static void Coalesce(const blink::WebInputEvent& event_to_coalesce,
24 blink::WebInputEvent* event);
25 static bool IgnoresAckDisposition(blink::WebInputEvent::Type type)
    [all...]
scoped_web_input_event.h 13 class WebInputEvent;
18 // blink::WebInputEvent does not provide a virtual destructor.
21 void operator()(blink::WebInputEvent* web_event) const;
23 typedef scoped_ptr<blink::WebInputEvent,
input_event.h 15 class WebInputEvent;
24 InputEvent(const blink::WebInputEvent& web_event,
scoped_web_input_event.cc 9 #include "third_party/WebKit/public/web/WebInputEvent.h"
12 using blink::WebInputEvent;
22 void WebInputEventDeleter::operator()(WebInputEvent* web_event) const {
web_input_event_traits.cc 10 using blink::WebInputEvent;
32 event.type == WebInputEvent::MouseMove;
93 event.type == WebInputEvent::TouchMove &&
117 event.type == WebInputEvent::GestureScrollUpdate &&
130 bool Execute(WebInputEvent::Type /* type */, size_t* type_size) const {
138 bool Execute(const WebInputEvent& event,
149 bool Execute(WebInputEvent* event, bool* /* dummy_var */) const {
160 bool Execute(const WebInputEvent& event_to_coalesce,
161 const WebInputEvent* event) const {
173 bool Execute(const WebInputEvent& event_to_coalesce
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentPrivate.h 38 class WebInputEvent;
54 virtual bool handleInputEvent(WebCore::Page*, const WebInputEvent&) = 0;
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...]
PageWidgetDelegate.cpp 35 #include "WebInputEvent.h"
116 bool PageWidgetDelegate::handleInputEvent(Page* page, PageWidgetEventHandler& handler, const WebInputEvent& event)
124 case WebInputEvent::MouseMove:
129 case WebInputEvent::MouseLeave:
134 case WebInputEvent::MouseDown:
139 case WebInputEvent::MouseUp:
145 case WebInputEvent::MouseWheel:
150 case WebInputEvent::RawKeyDown:
151 case WebInputEvent::KeyDown:
152 case WebInputEvent::KeyUp
    [all...]
WebInputEventFactoryWin.cpp 34 #include "WebInputEvent.h"
56 modifier = WebInputEvent::IsKeyPad;
69 modifier = WebInputEvent::IsKeyPad;
87 modifier = WebInputEvent::IsKeyPad;
91 modifier = WebInputEvent::IsLeft;
93 modifier = WebInputEvent::IsRight;
97 modifier = WebInputEvent::IsLeft;
99 modifier = WebInputEvent::IsRight;
103 modifier = WebInputEvent::IsLeft;
105 modifier = WebInputEvent::IsRight
    [all...]
WebInputEventConversion.cpp 91 if (e.modifiers & WebInputEvent::ShiftKey)
93 if (e.modifiers & WebInputEvent::ControlKey)
95 if (e.modifiers & WebInputEvent::AltKey)
97 if (e.modifiers & WebInputEvent::MetaKey)
105 case WebInputEvent::MouseMove:
106 case WebInputEvent::MouseLeave: // synthesize a move event
110 case WebInputEvent::MouseDown:
114 case WebInputEvent::MouseUp:
142 if (e.modifiers & WebInputEvent::ShiftKey)
144 if (e.modifiers & WebInputEvent::ControlKey
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
touch_action_filter.cc 7 #include "third_party/WebKit/public/web/WebInputEvent.h"
9 using blink::WebInputEvent;
25 case WebInputEvent::GestureScrollBegin:
29 case WebInputEvent::GestureScrollUpdate:
34 case WebInputEvent::GestureScrollEnd:
35 case WebInputEvent::GestureFlingStart:
web_input_event_builders_win.cc 10 using blink::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_unittest.cc 17 #include "third_party/WebKit/public/web/WebInputEvent.h"
21 using blink::WebInputEvent;
83 void SimulateGestureEvent(WebInputEvent::Type type,
115 void SendInputEventACK(WebInputEvent::Type type,
152 void set_sync_followup_event(WebInputEvent::Type type,
221 SimulateGestureEvent(WebInputEvent::GestureScrollBegin,
231 EXPECT_EQ(WebInputEvent::GestureScrollUpdate, merged_event.type);
238 EXPECT_EQ(WebInputEvent::GestureScrollUpdate, merged_event.type);
248 EXPECT_EQ(WebInputEvent::GestureScrollUpdate, merged_event.type);
252 SimulateGestureEvent(WebInputEvent::GestureScrollEnd
    [all...]
gesture_event_filter.cc 15 using blink::WebInputEvent;
58 if (it->event.type == WebInputEvent::GestureFlingStart)
60 if (it->event.type == WebInputEvent::GestureFlingCancel)
72 case WebInputEvent::GestureScrollUpdate:
86 case WebInputEvent::GesturePinchBegin:
87 case WebInputEvent::GesturePinchEnd:
88 case WebInputEvent::GesturePinchUpdate:
115 return gesture_event.event.type != WebInputEvent::GestureFlingStart ||
123 return gesture_event.event.type != WebInputEvent::GestureFlingCancel ||
130 case WebInputEvent::GestureFlingCancel
    [all...]
web_input_event_util_posix.h 8 #include "third_party/WebKit/public/web/WebInputEvent.h"
14 blink::WebInputEvent::Modifiers GetLocationModifiersFromWindowsKeyCode(
web_input_event_builders_android.cc 15 using blink::WebInputEvent;
21 WebKeyboardEvent WebKeyboardEventBuilder::Build(WebInputEvent::Type type,
27 DCHECK(WebInputEvent::isKeyboardEventType(type));
51 WebMouseEvent WebMouseEventBuilder::Build(blink::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...]
  /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 blink::WebInputEvent& event,
33 // Creates a WebInputEvent from the given PP_InputEvent. If it fails, returns
35 blink::WebInputEvent* CreateWebInputEvent(const ppapi::InputEventData& event);
40 std::vector<linked_ptr<blink::WebInputEvent> > CreateSimulatedWebInputEvents(
47 PP_InputEvent_Class ClassifyInputEvent(blink::WebInputEvent::Type type);
event_conversion.cc 24 #include "third_party/WebKit/public/web/WebInputEvent.h"
29 using blink::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 blink::WebInputEvent& web_event);
45 static NSUInteger CocoaModifiers(const blink::WebInputEvent& web_event);
  /external/chromium_org/content/renderer/
idle_user_detector.h 12 class WebInputEvent;
32 void OnHandleInputEvent(const blink::WebInputEvent* event,
  /external/chromium_org/content/browser/android/in_process/
synchronous_input_event_filter.h 16 class WebInputEvent;
32 const blink::WebInputEvent& input_event);
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 13 using blink::WebInputEvent;
38 const blink::WebInputEvent& event,
42 case blink::WebInputEvent::GestureScrollEnd:
43 case blink::WebInputEvent::GestureFlingStart:
47 case blink::WebInputEvent::MouseWheel: {
59 if (blink::WebInputEvent::isMouseEventType(event.type) ||
60 blink::WebInputEvent::isKeyboardEventType(event.type)) {
75 if (blink::WebInputEvent::isGestureEventType(event.type)) {
87 if (blink::WebInputEvent::isGestureEventType(event.type)) {
107 void OverscrollController::ReceivedEventACK(const blink::WebInputEvent& event
    [all...]
overscroll_controller.h 10 #include "third_party/WebKit/public/web/WebInputEvent.h"
51 Disposition DispatchEvent(const blink::WebInputEvent& event,
56 void ReceivedEventACK(const blink::WebInputEvent& event, bool processed);
89 const blink::WebInputEvent& event) const;
93 bool DispatchEventResetsState(const blink::WebInputEvent& event) const;
97 bool ProcessEventForOverscroll(const blink::WebInputEvent& event);
104 blink::WebInputEvent::Type event_type);
  /external/chromium_org/content/renderer/input/
input_handler_manager_client.h 24 class WebInputEvent;
38 const blink::WebInputEvent*,
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginScrollbar.h 33 class WebInputEvent;
71 virtual bool handleInputEvent(const WebInputEvent&) = 0;

Completed in 565 milliseconds

1 2 3 4 5 6 7 8 9