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

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

Issue 1142283004: Implement a Hit Test Cache. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix git cl format mangling Created 5 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: Source/core/layout/HitTestRequest.h
diff --git a/Source/core/layout/HitTestRequest.h b/Source/core/layout/HitTestRequest.h
index d9e937e1c31b2ab2a7830e2ab721976775951c72..34f0d52d1522e99e6176ec24cffdcac5ce6d2c39 100644
--- a/Source/core/layout/HitTestRequest.h
+++ b/Source/core/layout/HitTestRequest.h
@@ -46,6 +46,7 @@ public:
// When using list-based testing, this flag causes us to continue hit
// testing after a hit has been found.
PenetratingList = 1 << 12,
+ AvoidCache = 1 << 13,
};
typedef unsigned HitTestRequestType;
@@ -69,12 +70,19 @@ public:
bool ignorePointerEventsNone() const { return m_requestType & IgnorePointerEventsNone; }
bool listBased() const { return m_requestType & ListBased; }
bool penetratingList() const { return m_requestType & PenetratingList; }
+ bool avoidCache() const { return m_requestType & AvoidCache; }
// Convenience functions
bool touchMove() const { return move() && touchEvent(); }
HitTestRequestType type() const { return m_requestType; }
+ static const HitTestRequestType CacheabilityBits = ReadOnly | Active | Move | Release | TouchEvent;
Rick Byers 2015/06/06 16:12:54 this probably deserves a comment saying these bits
dtapuska 2015/06/09 18:21:24 Done.
+ bool equalForCacheability(const HitTestRequest& value) const
+ {
+ return (m_requestType | CacheabilityBits) == (value.m_requestType | CacheabilityBits);
+ }
+
private:
HitTestRequestType m_requestType;
};

Powered by Google App Engine
This is Rietveld 408576698