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

Unified Diff: Source/core/rendering/HitTestRequest.h

Issue 329773002: Remove special touch-action hit test mode (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated review comments Created 6 years, 6 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
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/rendering/InlineBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/HitTestRequest.h
diff --git a/Source/core/rendering/HitTestRequest.h b/Source/core/rendering/HitTestRequest.h
index 44fd6e4ecc90ab3b88c3d93b34271ae4ed449946..c8a63ef9c491d5c46845a44c2b33d5e4e9d54047 100644
--- a/Source/core/rendering/HitTestRequest.h
+++ b/Source/core/rendering/HitTestRequest.h
@@ -41,7 +41,6 @@ public:
AllowChildFrameContent = 1 << 10,
ChildFrameHitTest = 1 << 11,
IgnorePointerEventsNone = 1 << 12,
- TouchAction = 1 << 13, // Hit testing for touch-action considers only block-level elements
};
typedef unsigned HitTestRequestType;
@@ -64,7 +63,6 @@ public:
bool allowsChildFrameContent() const { return m_requestType & AllowChildFrameContent; }
bool isChildFrameHitTest() const { return m_requestType & ChildFrameHitTest; }
bool ignorePointerEventsNone() const { return m_requestType & IgnorePointerEventsNone; }
- bool touchAction() const { return m_requestType & TouchAction; }
// Convenience functions
bool touchMove() const { return move() && touchEvent(); }
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/rendering/InlineBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698