Index: Source/platform/UserGestureIndicator.h |
diff --git a/Source/platform/UserGestureIndicator.h b/Source/platform/UserGestureIndicator.h |
index 5281bf6909ea33c17e6c33dd5b9a332ef4b471d5..50831e0b00a661c952fa91a4bab8912d2e50fb3d 100644 |
--- a/Source/platform/UserGestureIndicator.h |
+++ b/Source/platform/UserGestureIndicator.h |
@@ -68,6 +68,8 @@ public: |
static bool processingUserGesture(); |
static bool consumeUserGesture(); |
static UserGestureToken* currentToken(); |
+ static void clearProcessedUserGestureInPast(); |
+ static bool processedUserGestureInPast(); |
explicit UserGestureIndicator(ProcessingUserGestureState); |
explicit UserGestureIndicator(PassRefPtr<UserGestureToken>); |
@@ -77,6 +79,7 @@ public: |
private: |
static ProcessingUserGestureState s_state; |
static UserGestureIndicator* s_topmostIndicator; |
+ static bool s_processedUserGestureInPast; |
ProcessingUserGestureState m_previousState; |
RefPtr<UserGestureToken> m_token; |
}; |