HomeSort by relevance Sort by last modified time
    Searched refs:gestureEvent (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 292 bool PopupContainer::handleGestureEvent(const PlatformGestureEvent& gestureEvent)
294 switch (gestureEvent.type()) {
296 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
297 PlatformMouseEvent fakeMouseDown(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, /* clickCount (…)
    [all...]
WebDevToolsAgentImpl.cpp 476 PlatformGestureEvent gestureEvent = PlatformGestureEventBuilder(page->mainFrame()->view(), *static_cast<const WebGestureEvent*>(&inputEvent));
477 return ic->handleGestureEvent(page->mainFrame(), gestureEvent);
  /external/chromium_org/third_party/WebKit/public/web/android/
WebInputEventFactory.h 76 WEBKIT_EXPORT static WebGestureEvent gestureEvent(WebInputEvent::Type,
84 WEBKIT_EXPORT static WebGestureEvent gestureEvent(WebInputEvent::Type,
  /external/chromium_org/third_party/WebKit/public/web/mac/
WebInputEventFactory.h 57 WEBKIT_EXPORT static WebGestureEvent gestureEvent(NSEvent *, NSView *);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
GestureEvent.h 35 class GestureEvent : public MouseRelatedEvent {
37 virtual ~GestureEvent() { }
39 static PassRefPtr<GestureEvent> create();
40 static PassRefPtr<GestureEvent> create(PassRefPtr<AbstractView>, const PlatformGestureEvent&);
52 GestureEvent();
53 GestureEvent(const AtomicString& type, PassRefPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
61 static PassRefPtr<GestureEventDispatchMediator> create(PassRefPtr<GestureEvent> gestureEvent)
63 return adoptRef(new GestureEventDispatchMediator(gestureEvent));
67 explicit GestureEventDispatchMediator(PassRefPtr<GestureEvent>);
    [all...]
GestureEvent.cpp 28 #include "core/dom/GestureEvent.h"
33 PassRefPtr<GestureEvent> GestureEvent::create()
35 return adoptRef(new GestureEvent);
38 PassRefPtr<GestureEvent> GestureEvent::create(PassRefPtr<AbstractView> view, const PlatformGestureEvent& event)
64 return adoptRef(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.deltaX(), event.deltaY()));
67 void GestureEvent::initGestureEvent(const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY)
85 const AtomicString& GestureEvent::interfaceName() const
87 // FIXME: when a GestureEvent.idl interface is defined, return the string "GestureEvent"
    [all...]
Node.cpp 51 #include "core/dom/GestureEvent.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/android/
WebInputEventFactory.cpp 152 WebGestureEvent WebInputEventFactory::gestureEvent(WebInputEvent::Type type,
159 return gestureEvent(type, timeStampSeconds, x, y, modifiers);
162 WebGestureEvent WebInputEventFactory::gestureEvent(WebInputEvent::Type type,
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Scrollbar.h 117 bool gestureEvent(const PlatformGestureEvent&);
Scrollbar.cpp 333 bool Scrollbar::gestureEvent(const PlatformGestureEvent& evt)
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp     [all...]
EventSender.h 123 void gestureEvent(WebKit::WebInputEvent::Type, const CppArgumentList&);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 41 #include "core/dom/GestureEvent.h"
254 RefPtr<GestureEvent> gestureEvent = GestureEvent::create(domWindow, platformGestureEvent);
255 WebGestureEventBuilder webGestureBuilder(view, docRenderer, *gestureEvent);
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewGestureHandlerTest.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/mac/
WebInputEventFactory.mm 938 WebGestureEvent WebInputEventFactory::gestureEvent(NSEvent *event, NSView *view)

Completed in 691 milliseconds