Home | History | Annotate | Download | only in platform

Lines Matching refs:UserGestureIndicator

27 #include "platform/UserGestureIndicator.h"
113 ProcessingUserGestureState UserGestureIndicator::s_state = DefinitelyNotProcessingUserGesture;
114 UserGestureIndicator* UserGestureIndicator::s_topmostIndicator = 0;
115 bool UserGestureIndicator::s_processedUserGestureInPast = false;
117 UserGestureIndicator::UserGestureIndicator(ProcessingUserGestureState state)
145 UserGestureIndicator::UserGestureIndicator(PassRefPtr<UserGestureToken> token)
170 UserGestureIndicator::~UserGestureIndicator()
180 bool UserGestureIndicator::processingUserGesture()
187 bool UserGestureIndicator::consumeUserGesture()
194 UserGestureToken* UserGestureIndicator::currentToken()
201 void UserGestureIndicator::clearProcessedUserGestureInPast()
207 bool UserGestureIndicator::processedUserGestureInPast()
215 : m_savedState(UserGestureIndicator::s_state)
216 , m_savedIndicator(UserGestureIndicator::s_topmostIndicator)
219 UserGestureIndicator::s_state = DefinitelyNotProcessingUserGesture;
220 UserGestureIndicator::s_topmostIndicator = 0;
226 UserGestureIndicator::s_state = m_savedState;
227 UserGestureIndicator::s_topmostIndicator = m_savedIndicator;