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

  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 308 bool PopupContainer::handleGestureEvent(const PlatformGestureEvent& gestureEvent)
310 switch (gestureEvent.type()) {
312 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), PlatformMouseEvent::FromTouch, gestureEvent.timestamp());
313 PlatformMouseEvent fakeMouseDown(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, /* clickCount (…)
    [all...]
WebDevToolsAgentImpl.cpp 319 PlatformGestureEventBuilder gestureEvent(frameView, static_cast<const WebGestureEvent&>(inputEvent));
321 if (gestureEvent.type() == PlatformEvent::GesturePinchBegin) {
322 m_lastPinchAnchorCss = adoptPtr(new IntPoint(frameView->scrollPosition() + gestureEvent.position()));
323 m_lastPinchAnchorDip = adoptPtr(new IntPoint(gestureEvent.position()));
326 if (gestureEvent.type() == PlatformEvent::GesturePinchUpdate && m_lastPinchAnchorCss) {
327 float newPageScaleFactor = pageScaleFactor * gestureEvent.scale();
333 if (gestureEvent.type() == PlatformEvent::GesturePinchEnd) {
346 PlatformGestureEvent gestureEvent = PlatformGestureEventBuilder(page->deprecatedLocalMainFrame()->view(), static_cast<const WebGestureEvent&>(inputEvent));
347 return ic->handleGestureEvent(toLocalFrame(page->mainFrame()), gestureEvent);
  /external/chromium_org/third_party/WebKit/Source/core/events/
GestureEvent.h 35 class GestureEvent FINAL : public MouseRelatedEvent {
37 virtual ~GestureEvent() { }
39 static PassRefPtrWillBeRawPtr<GestureEvent> create(PassRefPtrWillBeRawPtr<AbstractView>, const PlatformGestureEvent&);
51 GestureEvent();
52 GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
60 static PassRefPtrWillBeRawPtr<GestureEventDispatchMediator> create(PassRefPtrWillBeRawPtr<GestureEvent> gestureEvent)
62 return adoptRefWillBeNoop(new GestureEventDispatchMediator(gestureEvent));
66 explicit GestureEventDispatchMediator(PassRefPtrWillBeRawPtr<GestureEvent>);
68 GestureEvent* event() const
    [all...]
GestureEvent.cpp 28 #include "core/events/GestureEvent.h"
33 PassRefPtrWillBeRawPtr<GestureEvent> GestureEvent::create(PassRefPtrWillBeRawPtr<AbstractView> view, const PlatformGestureEvent& event)
68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
71 const AtomicString& GestureEvent::interfaceName() const
73 // FIXME: when a GestureEvent.idl interface is defined, return the string "GestureEvent".
79 bool GestureEvent::isGestureEvent() const
84 GestureEvent::GestureEvent()
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/mac/
WebInputEventFactory.h 57 BLINK_EXPORT static WebGestureEvent gestureEvent(NSEvent *, NSView *);
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.h 121 bool gestureEvent(const PlatformGestureEvent&);
Scrollbar.cpp 335 bool Scrollbar::gestureEvent(const PlatformGestureEvent& evt)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 41 #include "core/events/GestureEvent.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 37 #include "core/events/GestureEvent.h"
395 RefPtrWillBeRawPtr<GestureEvent> gestureEvent = GestureEvent::create(domWindow, platformGestureEvent);
396 WebGestureEventBuilder webGestureBuilder(view, documentRenderView, *gestureEvent);
607 RefPtrWillBeRawPtr<GestureEvent> coreGestureEvent = GestureEvent::create(domWindow, platformGestureBuilder);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.cpp 70 #include "core/events/GestureEvent.h"
    [all...]

Completed in 699 milliseconds