Home
last modified time | relevance | path

Searched refs:handleGestureEvent (Results 1 – 24 of 24) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebPopupMenuImpl.cpp128 bool WebPopupMenuImpl::handleGestureEvent(const WebGestureEvent& event) in handleGestureEvent() function in blink::WebPopupMenuImpl
130 return m_widget->handleGestureEvent(PlatformGestureEventBuilder(m_widget, event)); in handleGestureEvent()
275 return handleGestureEvent(*static_cast<const WebGestureEvent*>(&inputEvent)); in handleInputEvent()
DPageWidgetDelegate.h63 virtual bool handleGestureEvent(const WebGestureEvent&) = 0;
DWebPagePopupImpl.cpp272 bool WebPagePopupImpl::handleGestureEvent(const WebGestureEvent& event) in handleGestureEvent() function in blink::WebPagePopupImpl
277 … return frame.eventHandler().handleGestureEvent(PlatformGestureEventBuilder(frame.view(), event)); in handleGestureEvent()
DWebPagePopupImpl.h81 virtual bool handleGestureEvent(const WebGestureEvent&) OVERRIDE;
DPopupContainer.h66 virtual bool handleGestureEvent(const PlatformGestureEvent&) OVERRIDE;
DPopupListBox.h127 virtual bool handleGestureEvent(const PlatformGestureEvent&) OVERRIDE;
DWebPopupMenuImpl.h102 bool handleGestureEvent(const WebGestureEvent&);
DPageWidgetDelegate.cpp172 return handler.handleGestureEvent(*static_cast<const WebGestureEvent*>(&event)); in handleInputEvent()
DWebPluginContainerImpl.h174 void handleGestureEvent(WebCore::GestureEvent*);
DWebPluginContainerImpl.cpp199 handleGestureEvent(toGestureEvent(event)); in handleEvent()
827 void WebPluginContainerImpl::handleGestureEvent(GestureEvent* event) in handleGestureEvent() function in blink::WebPluginContainerImpl
DPopupContainer.cpp289 bool PopupContainer::handleGestureEvent(const PlatformGestureEvent& gestureEvent) in handleGestureEvent() function in WebCore::PopupContainer
DWebDevToolsAgentImpl.cpp303 return ic->handleGestureEvent(page->mainFrame(), gestureEvent); in handleInputEvent()
DWebViewImpl.cpp651 handleGestureEvent(syntheticGestureEvent); in scrollBy()
655 bool WebViewImpl::handleGestureEvent(const WebGestureEvent& event) in handleGestureEvent() function in blink::WebViewImpl
748 eventSwallowed = mainFrameImpl()->frame()->eventHandler().handleGestureEvent(platformEvent); in handleGestureEvent()
769 eventSwallowed = mainFrameImpl()->frame()->eventHandler().handleGestureEvent(platformEvent); in handleGestureEvent()
776 eventSwallowed = mainFrameImpl()->frame()->eventHandler().handleGestureEvent(platformEvent); in handleGestureEvent()
800 eventSwallowed = mainFrameImpl()->frame()->eventHandler().handleGestureEvent(platformEvent); in handleGestureEvent()
DWebViewImpl.h640 virtual bool handleGestureEvent(const WebGestureEvent&) OVERRIDE;
DPopupListBox.cpp192 bool PopupListBox::handleGestureEvent(const PlatformGestureEvent&) in handleGestureEvent() function in WebCore::PopupListBox
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DFramelessScrollView.h67 virtual bool handleGestureEvent(const PlatformGestureEvent&) = 0;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorController.cpp320 bool InspectorController::handleGestureEvent(Frame* frame, const PlatformGestureEvent& event) in handleGestureEvent() function in WebCore::InspectorController
323 m_overlay->handleGestureEvent(event); in handleGestureEvent()
325 return domAgent->handleGestureEvent(frame, event); in handleGestureEvent()
DInspectorController.h97 bool handleGestureEvent(Frame*, const PlatformGestureEvent&);
DInspectorOverlay.h123 bool handleGestureEvent(const PlatformGestureEvent&);
DInspectorOverlay.cpp278 bool InspectorOverlay::handleGestureEvent(const PlatformGestureEvent& event) in handleGestureEvent() function in WebCore::InspectorOverlay
283 return overlayPage()->mainFrame()->eventHandler().handleGestureEvent(event); in handleGestureEvent()
DInspectorDOMAgent.h188 bool handleGestureEvent(Frame*, const PlatformGestureEvent&);
DInspectorDOMAgent.cpp1077 bool InspectorDOMAgent::handleGestureEvent(Frame* frame, const PlatformGestureEvent& event) in handleGestureEvent() function in WebCore::InspectorDOMAgent
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.h143 bool handleGestureEvent(const PlatformGestureEvent&);
DEventHandler.cpp2258 bool EventHandler::handleGestureEvent(const PlatformGestureEvent& gestureEvent) in handleGestureEvent() function in WebCore::EventHandler
2285 return subframe->eventHandler().handleGestureEvent(gestureEvent); in handleGestureEvent()
2537 return toFrameView(widget)->frame().eventHandler().handleGestureEvent(gestureEvent); in passGestureEventToWidget()