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

Side by Side Diff: Source/WebCore/dom/UserGestureIndicator.h

Issue 10907083: Merge 126609 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/WebCore/dom/UserGestureIndicator.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 21 matching lines...) Expand all
32 32
33 enum ProcessingUserGestureState { 33 enum ProcessingUserGestureState {
34 DefinitelyProcessingUserGesture, 34 DefinitelyProcessingUserGesture,
35 PossiblyProcessingUserGesture, 35 PossiblyProcessingUserGesture,
36 DefinitelyNotProcessingUserGesture 36 DefinitelyNotProcessingUserGesture
37 }; 37 };
38 38
39 class UserGestureIndicator { 39 class UserGestureIndicator {
40 WTF_MAKE_NONCOPYABLE(UserGestureIndicator); 40 WTF_MAKE_NONCOPYABLE(UserGestureIndicator);
41 public: 41 public:
42 static bool processingUserGesture() { return s_state == DefinitelyProcessing UserGesture; } 42 static bool processingUserGesture() { return s_consumableGestures && s_state == DefinitelyProcessingUserGesture; }
43 static bool consumeUserGesture();
43 44
44 explicit UserGestureIndicator(ProcessingUserGestureState); 45 explicit UserGestureIndicator(ProcessingUserGestureState);
45 ~UserGestureIndicator(); 46 ~UserGestureIndicator();
46 47
47 private: 48 private:
48 static ProcessingUserGestureState s_state; 49 static ProcessingUserGestureState s_state;
50 static size_t s_consumableGestures;
49 ProcessingUserGestureState m_previousState; 51 ProcessingUserGestureState m_previousState;
50 }; 52 };
51 53
52 } 54 }
53 55
54 #endif 56 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/dom/UserGestureIndicator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698