Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(475)

Unified Diff: sky/engine/web/WebViewImpl.cpp

Issue 713073003: remove updateTouchEventTargetRectsIfNeeded (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: moar Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/engine/web/WebViewImpl.cpp
diff --git a/sky/engine/web/WebViewImpl.cpp b/sky/engine/web/WebViewImpl.cpp
index 693762672f387eab34ea8d6ba91fee3483608196..a073c2d750789fb8ecb6ab9a49d8df9f7cc12304 100644
--- a/sky/engine/web/WebViewImpl.cpp
+++ b/sky/engine/web/WebViewImpl.cpp
@@ -45,7 +45,6 @@
#include "core/editing/markup.h"
#include "core/events/KeyboardEvent.h"
#include "core/events/WheelEvent.h"
-#include "core/frame/EventHandlerRegistry.h"
#include "core/frame/FrameHost.h"
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
@@ -760,17 +759,6 @@ bool WebViewImpl::zoomToMultipleTargetsRect(const WebRect& rect)
return false;
}
-void WebViewImpl::hasTouchEventHandlers(bool hasTouchHandlers)
-{
- m_client->hasTouchEventHandlers(hasTouchHandlers);
-}
-
-bool WebViewImpl::hasTouchEventHandlersAt(const WebPoint& point)
-{
- // FIXME: Implement this. Note that the point must be divided by pageScaleFactor.
- return true;
-}
-
bool WebViewImpl::keyEventDefault(const WebKeyboardEvent& event)
{
LocalFrame* frame = focusedCoreFrame();

Powered by Google App Engine
This is Rietveld 408576698