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

1 2 3

  /external/chromium_org/content/common/input/
touch_event_stream_validator.h 23 bool Validate(const blink::WebTouchEvent& event, std::string* error_msg);
26 blink::WebTouchEvent previous_event_;
web_touch_event_traits.h 18 static bool AllTouchPointsHaveState(const blink::WebTouchEvent& event,
23 static bool IsTouchSequenceStart(const blink::WebTouchEvent& event);
29 blink::WebTouchEvent* event);
36 blink::WebTouchEvent* event);
web_touch_event_traits.cc 10 using blink::WebTouchEvent;
16 const WebTouchEvent& event,
27 bool WebTouchEventTraits::IsTouchSequenceStart(const WebTouchEvent& event) {
36 WebTouchEvent* event) {
45 WebTouchEvent* event) {
input_event_stream_validator.cc 14 using blink::WebTouchEvent;
42 const WebTouchEvent& touch = static_cast<const WebTouchEvent&>(event);
scoped_web_input_event.cc 16 using blink::WebTouchEvent;
touch_event_stream_validator.cc 11 using blink::WebTouchEvent;
17 const WebTouchPoint* FindTouchPoint(const WebTouchEvent& event, int id) {
33 bool TouchEventStreamValidator::Validate(const WebTouchEvent& event,
38 WebTouchEvent previous_event = previous_event_;
45 previous_event = WebTouchEvent();
web_input_event_traits.cc 17 using blink::WebTouchEvent;
97 int GetIndexOfTouchID(const WebTouchEvent& event, int id) {
105 bool CanCoalesce(const WebTouchEvent& event_to_coalesce,
106 const WebTouchEvent& event) {
111 event.touchesLength > WebTouchEvent::touchesLengthCap)
114 COMPILE_ASSERT(WebTouchEvent::touchesLengthCap <= sizeof(int32_t) * 8U,
117 std::bitset<WebTouchEvent::touchesLengthCap> unmatched_event_touches(
131 void Coalesce(const WebTouchEvent& event_to_coalesce, WebTouchEvent* event) {
139 WebTouchEvent old_event = *event
    [all...]
web_input_event_traits_unittest.cc 14 using blink::WebTouchEvent;
30 static WebTouchEvent CreateTouch(WebInputEvent::Type type) {
34 static WebTouchEvent CreateTouch(WebInputEvent::Type type,
36 WebTouchEvent event;
54 WebTouchEvent touch0 = CreateTouch(WebInputEvent::TouchStart);
55 WebTouchEvent touch1 = CreateTouch(WebInputEvent::TouchMove);
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.h 14 class WebTouchEvent;
30 // Creates a list of ui::TouchEvents out of a single WebTouchEvent.
31 // A WebTouchEvent can contain information about a number of WebTouchPoints,
34 // WebTouchEvent. All the ui::TouchEvent in the list will carry the same
35 // LatencyInfo the WebTouchEvent carries.
53 // Updates the WebTouchEvent based on the TouchEvent. It returns the updated
54 // WebTouchPoint contained in the WebTouchEvent, or NULL if no point was
58 blink::WebTouchEvent* web_event);
event_with_latency_info.h 16 class WebTouchEvent;
54 typedef EventWithLatencyInfo<blink::WebTouchEvent>
  /external/chromium_org/content/browser/renderer_host/input/
touch_emulator_client.h 20 virtual void ForwardTouchEvent(const blink::WebTouchEvent& event) = 0;
web_input_event_util.h 25 // Creates a WebTouchEvent from |event|, scaling all size components from
27 CONTENT_EXPORT blink::WebTouchEvent CreateWebTouchEventFromMotionEvent(
synthetic_gesture_target_base.h 16 class WebTouchEvent;
31 const blink::WebTouchEvent& web_touch,
synthetic_gesture_target_aura.h 30 const blink::WebTouchEvent& web_touch,
synthetic_gesture_target_base.cc 16 using blink::WebTouchEvent;
54 const WebTouchEvent& web_touch =
55 static_cast<const WebTouchEvent&>(event);
86 const blink::WebTouchEvent& web_touch,
motion_event_web.h 13 // Implementation of ui::MotionEvent wrapping a WebTouchEvent.
16 explicit MotionEventWeb(const blink::WebTouchEvent& event);
50 blink::WebTouchEvent event_;
motion_event_web.cc 11 using blink::WebTouchEvent;
17 ui::MotionEvent::Action GetActionFrom(const WebTouchEvent& event) {
42 << "Unable to derive a valid MotionEvent::Action from the WebTouchEvent.";
46 int GetActionIndexFrom(const WebTouchEvent& event) {
57 MotionEventWeb::MotionEventWeb(const WebTouchEvent& event)
162 WebTouchEvent cancel_event(event_);
synthetic_gesture_target_android.h 27 const blink::WebTouchEvent& web_touch,
synthetic_gesture_target_android.cc 14 using blink::WebTouchEvent;
49 const blink::WebTouchEvent& web_touch, const ui::LatencyInfo&) {
touch_event_queue.h 185 PreFilterResult FilterBeforeForwarding(const blink::WebTouchEvent& event);
187 void UpdateTouchAckStates(const blink::WebTouchEvent& event,
mock_input_ack_handler.cc 15 using blink::WebTouchEvent;
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.h 52 class WebTouchEvent;
64 virtual bool handleTouchEvent(WebCore::LocalFrame& mainFrame, const WebTouchEvent&);
WebInputEventConversion.h 57 class WebTouchEvent;
91 // Converts a WebTouchEvent to a WebCore::PlatformTouchEvent.
94 PlatformTouchEventBuilder(WebCore::Widget*, const WebTouchEvent&);
131 // Converts a WebCore::TouchEvent to a corresponding WebTouchEvent.
134 class WebTouchEventBuilder : public WebTouchEvent {
WebInputEvent.cpp 64 WebTouchPoint touchPoints[3 * WebTouchEvent::touchesLengthCap];
73 COMPILE_ASSERT(sizeof(WebTouchEvent) == sizeof(SameSizeAsWebTouchEvent), WebTouchEvent_has_gaps);
  /external/chromium_org/content/public/renderer/
render_view_observer.h 32 class WebTouchEvent;
90 virtual void DidHandleTouchEvent(const blink::WebTouchEvent& event) {}

Completed in 101 milliseconds

1 2 3