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

Unified Diff: content/common/input/web_touch_event_traits.h

Issue 247433003: Mark touchcancel events as uncancelable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up and add tests Created 6 years, 8 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: content/common/input/web_touch_event_traits.h
diff --git a/content/common/input/web_touch_event_traits.h b/content/common/input/web_touch_event_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..920a09e5c6b79cf5f3b6d960486c68808ce5bde2
--- /dev/null
+++ b/content/common/input/web_touch_event_traits.h
@@ -0,0 +1,45 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_COMMON_INPUT_WEB_TOUCH_EVENT_TRAITS_H_
+#define CONTENT_COMMON_INPUT_WEB_TOUCH_EVENT_TRAITS_H_
+
+#include "base/basictypes.h"
+#include "content/common/input/scoped_web_input_event.h"
+#include "third_party/WebKit/public/web/WebInputEvent.h"
+
+namespace content {
+
+// Utility class for performing operations on and with WebTouchEvents.
+class CONTENT_EXPORT WebTouchEventTraits {
+ public:
+
+ // Returns whether all touches in the event have the specified state.
+ static bool AllTouchPointsHaveState(
+ const blink::WebTouchEvent& event,
+ blink::WebTouchPoint::State state);
+
+ // Returns whether this event represents a transition from no active
+ // touches to some active touches (the start of a new "touch sequence").
+ static bool IsTouchSequenceStart(const blink::WebTouchEvent& event);
+
+ // Sets the type of |event| to |type|, resetting any other type-specific
+ // properties and updating the timestamp and touches as requested.
+ // This is particularly useful, for example, in sending a touchcancel
+ // for all active touches.
+ enum ResetTouchesMode {
+ // Don't modify the Touches at all.
+ IGNORE_TOUCHES_STATE,
+ // Reset the state of every active Touch to match the event type.
+ RESET_TOUCHES_STATE
+ };
+ static void ResetType(blink::WebTouchEvent* event,
jdduke (slow) 2014/04/23 21:55:47 I'd much prefer two methods here, |ResetType| and
Rick Byers 2014/04/23 23:15:35 Done.
+ blink::WebInputEvent::Type type,
+ double timestamp_sec,
+ ResetTouchesMode);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_INPUT_WEB_TOUCH_EVENT_TRAITS_H_

Powered by Google App Engine
This is Rietveld 408576698