Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / UserGestureIndicator.h
index 50831e0..f73e6b0 100644 (file)
@@ -31,7 +31,7 @@
 #include "wtf/RefCounted.h"
 #include "wtf/RefPtr.h"
 
-namespace WebCore {
+namespace blink {
 
 class UserGestureIndicator;
 
@@ -68,8 +68,8 @@ public:
     static bool processingUserGesture();
     static bool consumeUserGesture();
     static UserGestureToken* currentToken();
-    static void clearProcessedUserGestureInPast();
-    static bool processedUserGestureInPast();
+    static void clearProcessedUserGestureSinceLoad();
+    static bool processedUserGestureSinceLoad();
 
     explicit UserGestureIndicator(ProcessingUserGestureState);
     explicit UserGestureIndicator(PassRefPtr<UserGestureToken>);
@@ -79,7 +79,7 @@ public:
 private:
     static ProcessingUserGestureState s_state;
     static UserGestureIndicator* s_topmostIndicator;
-    static bool s_processedUserGestureInPast;
+    static bool s_processedUserGestureSinceLoad;
     ProcessingUserGestureState m_previousState;
     RefPtr<UserGestureToken> m_token;
 };