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

Unified Diff: content/browser/renderer_host/input/web_touch_event_traits.h

Issue 171283002: Always reset touch action at the beginning of a new gesture sequence (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test name. Created 6 years, 10 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/browser/renderer_host/input/web_touch_event_traits.h
diff --git a/content/browser/renderer_host/input/web_touch_event_traits.h b/content/browser/renderer_host/input/web_touch_event_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..4e9b445d10968e1f1f840fc23bd5df298c2ba08e
--- /dev/null
+++ b/content/browser/renderer_host/input/web_touch_event_traits.h
@@ -0,0 +1,22 @@
+// 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:
+ static bool IsTouchSequenceStart(const blink::WebTouchEvent& event);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_INPUT_WEB_TOUCH_EVENT_TRAITS_H_

Powered by Google App Engine
This is Rietveld 408576698