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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 1956493002: Remove user gestures on touches other than tap in cross-origin iframes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with trunk Created 4 years, 7 months 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: third_party/WebKit/Source/core/input/EventHandler.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
index 0aa7ebcf9babbe3fcd8f9422e7bee6cf1f2b8303..db588d7030a43c6feaa88966bcf099ef156742ed 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -3644,10 +3644,9 @@ WebInputEventResult EventHandler::handleTouchEvent(const PlatformTouchEvent& eve
void EventHandler::userGestureUtilized()
{
- // This is invoked for UserGestureIndicators created in handleTouchEvent which perhaps represent
- // touch actions which shouldn't be considered a user-gesture.
+ // This is invoked for UserGestureIndicators created in TouchEventManger::handleTouchEvent which perhaps
+ // represent touch actions which shouldn't be considered a user-gesture.
UseCounter::count(m_frame, UseCounter::TouchDragUserGestureUsed);
- Deprecation::countDeprecationCrossOriginIframe(m_frame, UseCounter::TouchDragUserGestureUsedCrossOrigin);
}
void EventHandler::setLastKnownMousePosition(const PlatformMouseEvent& event)
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | third_party/WebKit/Source/core/input/TouchEventManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698