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

1 2

  /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.
49 // Updates the WebTouchEvent based on the TouchEvent. It returns the updated
50 // WebTouchPoint contained in the WebTouchEvent, or NULL if no point was
54 WebKit::WebTouchEvent* web_event);
ui_events_helper.cc 96 const WebKit::WebTouchEvent& touch = touch_with_latency.event;
261 WebKit::WebTouchEvent* web_event) {
266 if (web_event->touchesLength < WebKit::WebTouchEvent::touchesLengthCap) {
render_widget_host_view_android.h 44 class WebTouchEvent;
200 void SendTouchEvent(const WebKit::WebTouchEvent& event);
render_widget_host_view_win.cc 338 // Wrapper for maintaining touchstate associated with a WebTouchEvent.
351 // The contained WebTouchEvent.
352 const WebKit::WebTouchEvent& touch_event() { return touch_event_; }
374 WebKit::WebTouchEvent touch_event_;
    [all...]
  /external/chromium_org/content/browser/android/
touch_point.cc 13 using WebKit::WebTouchEvent;
21 WebKit::WebTouchEvent& event) {
30 if (event.type == WebTouchEvent::TouchCancel)
33 // Record the current number of points in the WebTouchEvent
35 DCHECK_LT(idx, WebKit::WebTouchEvent::touchesLengthCap);
75 WebKit::WebTouchEvent& event) {
76 event.type = static_cast<WebTouchEvent::Type>(type);
94 WebKit::WebTouchEvent::TouchStart,
95 WebKit::WebTouchEvent::TouchMove,
96 WebKit::WebTouchEvent::TouchEnd
    [all...]
touch_point.h 15 // events (in physical pixdels) into a WebKit::WebTouchEvent (in dip).
23 WebKit::WebTouchEvent& event);
  /external/chromium_org/content/port/browser/
event_with_latency_info.h 14 class WebTouchEvent;
37 typedef EventWithLatencyInfo<WebKit::WebTouchEvent>
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.h 52 class WebTouchEvent;
64 virtual bool handleTouchEvent(WebCore::Frame& 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);
WebPopupMenuImpl.h 58 class WebTouchEvent;
102 bool handleTouchEvent(const WebTouchEvent&);
PageWidgetDelegate.cpp 169 return handler.handleTouchEvent(*frame, *static_cast<const WebTouchEvent*>(&event));
215 bool PageWidgetEventHandler::handleTouchEvent(Frame& mainFrame, const WebTouchEvent& event)
WebPopupMenuImpl.cpp 133 bool WebPopupMenuImpl::handleTouchEvent(const WebTouchEvent& event)
255 return handleTouchEvent(*static_cast<const WebTouchEvent*>(&inputEvent));
  /external/chromium_org/content/browser/renderer_host/input/
touch_event_queue.h 76 bool ShouldForwardToRenderer(const WebKit::WebTouchEvent& event) const;
touch_event_queue.cc 53 const WebKit::WebTouchEvent last_event = coalesced_event_.event;
135 const WebKit::WebTouchEvent& event =
210 const WebKit::WebTouchEvent& event) const {
  /external/chromium_org/content/public/renderer/
render_view_observer.h 31 class WebTouchEvent;
89 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) {}
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 133 // WebTouchEvent
461 // WebTouchEvent --------------------------------------------------------------
463 class WebTouchEvent : public WebInputEvent {
474 // List of all touches whose state has changed since the last WebTouchEvent
481 WebTouchEvent(unsigned sizeParam = sizeof(WebTouchEvent))
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 34 using WebKit::WebTouchEvent;
238 const WebTouchEvent& touch_event =
239 reinterpret_cast<const WebTouchEvent&>(event);
265 i < WebTouchEvent::touchesLengthCap; i++) {
289 WebTouchEvent* BuildTouchEvent(const InputEventData& event) {
290 WebTouchEvent* web_event = new WebTouchEvent();
  /external/chromium_org/content/renderer/gpu/
input_handler_proxy.cc 21 using WebKit::WebTouchEvent;
219 const WebTouchEvent& touch_event =
220 *static_cast<const WebTouchEvent*>(&event);
  /external/chromium_org/content/common/
content_param_traits.cc 21 return sizeof(WebKit::WebTouchEvent);
  /external/chromium_org/content/renderer/
render_widget.h 56 class WebTouchEvent;
504 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) {}
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_views.h 203 WebKit::WebTouchEvent touch_event_;
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 116 const WebTouchEvent& touch = static_cast<const WebTouchEvent&>(event);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 210 WebTouchEvent webTouchEvent;
211 webTouchEvent.type = WebInputEvent::TouchMove;
212 webTouchEvent.touchesLength = 1;
213 webTouchEvent.touches[0].state = WebTouchPoint::StateMoved;
214 webTouchEvent.touches[0].screenPosition.x = 10;
215 webTouchEvent.touches[0].screenPosition.y = 10;
216 webTouchEvent.touches[0].position.x = 10;
217 webTouchEvent.touches[0].position.y = 10;
218 webTouchEvent.touches[0].radiusX = 10
    [all...]

Completed in 126 milliseconds

1 2