/external/chromium_org/third_party/WebKit/Source/core/page/ |
EventHandler.h | 64 class PlatformGestureEvent; 143 bool handleGestureEvent(const PlatformGestureEvent&); 144 bool handleGestureScrollEnd(const PlatformGestureEvent&); 151 bool adjustGesturePosition(const PlatformGestureEvent&, IntPoint& adjustedPoint); 155 bool sendContextMenuEventForGesture(const PlatformGestureEvent&); 201 bool handleGestureTap(const PlatformGestureEvent&, const IntPoint& adjustedPoint); 202 bool handleGestureLongPress(const PlatformGestureEvent&, const IntPoint& adjustedPoint); 203 bool handleGestureLongTap(const PlatformGestureEvent&, const IntPoint& adjustedPoint); 204 bool handleGestureTwoFingerTap(const PlatformGestureEvent&, const IntPoint& adjustedPoint); 205 bool handleGestureScrollUpdate(const PlatformGestureEvent&) [all...] |
EventHandler.cpp | 92 #include "platform/PlatformGestureEvent.h" [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
FramelessScrollView.h | 40 class PlatformGestureEvent; 67 virtual bool handleGestureEvent(const PlatformGestureEvent&) = 0;
|
Scrollbar.h | 40 class PlatformGestureEvent; 122 bool gestureEvent(const PlatformGestureEvent&);
|
ScrollableArea.h | 40 class PlatformGestureEvent;
|
Scrollbar.cpp | 31 #include "platform/PlatformGestureEvent.h" 347 bool Scrollbar::gestureEvent(const PlatformGestureEvent& evt)
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
PlatformGestureEvent.h | 38 class PlatformGestureEvent : public PlatformEvent { 40 PlatformGestureEvent() 46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY)
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
GestureEvent.h | 31 #include "platform/PlatformGestureEvent.h" 40 static PassRefPtr<GestureEvent> create(PassRefPtr<AbstractView>, const PlatformGestureEvent&);
|
GestureEvent.cpp | 38 PassRefPtr<GestureEvent> GestureEvent::create(PassRefPtr<AbstractView> view, const PlatformGestureEvent& event) 51 // back to a PlatformGestureEvent.
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorController.h | 59 class PlatformGestureEvent; 97 bool handleGestureEvent(Frame*, const PlatformGestureEvent&);
|
InspectorOverlay.h | 52 class PlatformGestureEvent; 123 bool handleGestureEvent(const PlatformGestureEvent&);
|
InspectorDOMAgent.h | 63 class PlatformGestureEvent; 188 bool handleGestureEvent(Frame*, const PlatformGestureEvent&);
|
InspectorController.cpp | 320 bool InspectorController::handleGestureEvent(Frame* frame, const PlatformGestureEvent& event)
|
InspectorOverlay.cpp | 278 bool InspectorOverlay::handleGestureEvent(const PlatformGestureEvent& event)
|
/external/chromium_org/third_party/WebKit/Source/web/ |
PopupListBox.h | 48 class PlatformGestureEvent; 127 virtual bool handleGestureEvent(const PlatformGestureEvent&) OVERRIDE;
|
WebInputEventConversion.h | 35 #include "platform/PlatformGestureEvent.h" 73 class PlatformGestureEventBuilder : public WebCore::PlatformGestureEvent {
|
PopupContainer.h | 66 virtual bool handleGestureEvent(const PlatformGestureEvent&) OVERRIDE;
|
WebPluginContainerImpl.h | 51 class PlatformGestureEvent;
|
WebViewImpl.h | 512 WebCore::Node* bestTapNode(const WebCore::PlatformGestureEvent& tapEvent); 513 void enableTapHighlightAtPoint(const WebCore::PlatformGestureEvent& tapEvent); [all...] |
PopupContainer.cpp | 40 #include "platform/PlatformGestureEvent.h" 289 bool PopupContainer::handleGestureEvent(const PlatformGestureEvent& gestureEvent)
|
WebDevToolsAgentImpl.cpp | 302 PlatformGestureEvent gestureEvent = PlatformGestureEventBuilder(page->mainFrame()->view(), *static_cast<const WebGestureEvent*>(&inputEvent));
|
PopupListBox.cpp | 40 #include "platform/PlatformGestureEvent.h" 192 bool PopupListBox::handleGestureEvent(const PlatformGestureEvent&)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerScrollableArea.cpp | 64 #include "platform/PlatformGestureEvent.h" [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Node.h | 72 class PlatformGestureEvent; 664 bool dispatchGestureEvent(const PlatformGestureEvent&); [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebInputEventConversionTest.cpp | 264 PlatformGestureEvent platformGestureEvent(PlatformEvent::GestureScrollUpdate, IntPoint(10, 10), IntPoint(10, 10), IntSize(10, 10), 0, false, false, false, false, 10, 10, 10, 10); 265 RefPtr<GestureEvent> gestureEvent = GestureEvent::create(domWindow, platformGestureEvent);
|