Searched refs:WebGestureEvent (Results 1 - 25 of 118) sorted by relevance

12345

/external/chromium_org/content/common/input/
H A Dgesture_event_stream_validator.h14 class WebGestureEvent;
27 bool Validate(const blink::WebGestureEvent& event, std::string* error_msg);
H A Dsynthetic_web_input_event_builders.h42 static blink::WebGestureEvent Build(blink::WebInputEvent::Type type,
44 static blink::WebGestureEvent BuildScrollBegin(float dx_hint,
46 static blink::WebGestureEvent BuildScrollUpdate(float dx,
49 static blink::WebGestureEvent BuildPinchUpdate(
55 static blink::WebGestureEvent BuildFling(
H A Dinput_event_stream_validator.cc13 using blink::WebGestureEvent;
37 const WebGestureEvent& gesture = static_cast<const WebGestureEvent&>(event);
H A Dscoped_web_input_event.cc11 using blink::WebGestureEvent;
H A Dsynthetic_web_input_event_builders.cc15 using blink::WebGestureEvent;
83 WebGestureEvent SyntheticWebGestureEventBuilder::Build(
87 WebGestureEvent result;
100 WebGestureEvent SyntheticWebGestureEventBuilder::BuildScrollBegin(
103 WebGestureEvent result = Build(WebInputEvent::GestureScrollBegin,
110 WebGestureEvent SyntheticWebGestureEventBuilder::BuildScrollUpdate(
114 WebGestureEvent result = Build(WebInputEvent::GestureScrollUpdate,
122 WebGestureEvent SyntheticWebGestureEventBuilder::BuildPinchUpdate(
128 WebGestureEvent result =
139 WebGestureEvent SyntheticWebGestureEventBuilde
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_action_filter.h13 class WebGestureEvent;
28 bool FilterGestureEvent(blink::WebGestureEvent* gesture_event);
46 bool ShouldSuppressScroll(const blink::WebGestureEvent& gesture_event);
H A Dtouch_emulator.h64 void PinchBegin(const blink::WebGestureEvent& event);
65 void PinchUpdate(const blink::WebGestureEvent& event);
66 void PinchEnd(const blink::WebGestureEvent& event);
67 void ScrollEnd(const blink::WebGestureEvent& event);
101 blink::WebGestureEvent pinch_event_;
H A Dtouch_emulator_client.h19 virtual void ForwardGestureEvent(const blink::WebGestureEvent& event) = 0;
H A Dtouch_action_filter_unittest.cc12 using blink::WebGestureEvent;
20 WebGestureEvent scroll_begin =
24 WebGestureEvent scroll_update =
26 WebGestureEvent scroll_end = SyntheticWebGestureEventBuilder::Build(
28 WebGestureEvent tap = SyntheticWebGestureEventBuilder::Build(
95 WebGestureEvent scroll_begin =
97 WebGestureEvent scroll_update =
101 WebGestureEvent fling_start = SyntheticWebGestureEventBuilder::BuildFling(
103 WebGestureEvent pad_fling = SyntheticWebGestureEventBuilder::BuildFling(
131 WebGestureEvent scroll_en
[all...]
H A Dweb_input_event_util.h30 // Creates a WebGestureEvent from |event|, scaling all size components from
32 CONTENT_EXPORT blink::WebGestureEvent CreateWebGestureEventFromGestureEventData(
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_delegate.cc22 const blink::WebGestureEvent& event) {
27 const blink::WebGestureEvent& event) {
H A Drender_widget_host_delegate.h15 class WebGestureEvent;
55 virtual bool PreHandleGestureEvent(const blink::WebGestureEvent& event);
59 virtual bool HandleGestureEvent(const blink::WebGestureEvent& event);
H A Dweb_input_event_aura.h33 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
35 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
37 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel();
H A Dui_events_helper.h13 class WebGestureEvent;
45 // Creates a WebGestureEvent from a ui::GestureEvent. Note that it does not
48 blink::WebGestureEvent MakeWebGestureEventFromUIEvent(
H A Dweb_input_event_aurawin.cc43 blink::WebGestureEvent MakeWebGestureEventFromNativeEvent(
47 return blink::WebGestureEvent();
/external/chromium_org/third_party/WebKit/public/web/mac/
H A DWebInputEventFactory.h49 class WebGestureEvent;
57 BLINK_EXPORT static WebGestureEvent gestureEvent(NSEvent *, NSView *);
/external/chromium_org/chrome/browser/chromeos/first_run/
H A Dfirst_run_view.cc62 const blink::WebGestureEvent& event) {
64 return event.type == blink::WebGestureEvent::GesturePinchBegin ||
65 event.type == blink::WebGestureEvent::GesturePinchUpdate ||
66 event.type == blink::WebGestureEvent::GesturePinchEnd;
/external/chromium_org/ui/web_dialogs/
H A Dweb_dialog_web_contents_delegate.cc61 const blink::WebGestureEvent& event) {
63 return event.type == blink::WebGestureEvent::GesturePinchBegin ||
64 event.type == blink::WebGestureEvent::GesturePinchUpdate ||
65 event.type == blink::WebGestureEvent::GesturePinchEnd;
/external/chromium_org/extensions/browser/app_window/
H A Dapp_web_contents_helper.h12 class WebGestureEvent;
36 static bool ShouldSuppressGestureEvent(const blink::WebGestureEvent& event);
H A Dapp_web_contents_helper.cc33 const blink::WebGestureEvent& event) {
35 return event.type == blink::WebGestureEvent::GesturePinchBegin ||
36 event.type == blink::WebGestureEvent::GesturePinchUpdate ||
37 event.type == blink::WebGestureEvent::GesturePinchEnd;
/external/chromium_org/content/renderer/input/
H A Dinput_handler_proxy.h62 EventDisposition HandleGestureFling(const blink::WebGestureEvent& event);
70 void ExtendBoostedFlingTimeout(const blink::WebGestureEvent& event);
99 blink::WebGestureEvent last_fling_boost_event_;
H A Dinput_handler_proxy.cc24 using blink::WebGestureEvent;
67 const WebGestureEvent& scroll_update_event,
90 const WebGestureEvent& fling_start_event) {
109 WebGestureEvent ObtainGestureScrollBegin(const WebGestureEvent& event) {
110 WebGestureEvent scroll_begin_event = event;
266 const WebGestureEvent& gesture_event =
267 *static_cast<const WebGestureEvent*>(&event);
298 const WebGestureEvent& gesture_event =
299 *static_cast<const WebGestureEvent*>(
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputEventConversion.h53 class WebGestureEvent;
72 PlatformGestureEventBuilder(Widget*, const WebGestureEvent&);
136 // Converts GestureEvent to a corresponding WebGestureEvent.
138 class WebGestureEventBuilder : public WebGestureEvent {
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_sign_in_delegate.cc103 const blink::WebGestureEvent& event) {
105 return event.type == blink::WebGestureEvent::GesturePinchBegin ||
106 event.type == blink::WebGestureEvent::GesturePinchUpdate ||
107 event.type == blink::WebGestureEvent::GesturePinchEnd;
/external/chromium_org/components/autofill/content/renderer/
H A Dpage_click_tracker.h39 const blink::WebGestureEvent& event) OVERRIDE;

Completed in 487 milliseconds

12345