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

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

Issue 1560553002: Framelet Prototype 2016 Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased + Applied Brett's Windows + Fixed security issue Created 4 years, 11 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
deleted file mode 100644
index 33ac8c7f2656ee078106ab4883fb517cb948e282..0000000000000000000000000000000000000000
--- a/content/common/input/web_touch_event_traits.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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 "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);
-
- // Returns whether this event represents a transition from active
- // touches to no active touches (the end of a "touch sequence").
- static bool IsTouchSequenceEnd(const blink::WebTouchEvent& event);
-
- // Sets the type of |event| to |type|, resetting any other type-specific
- // properties and updating the timestamp.
- static void ResetType(blink::WebInputEvent::Type type,
- double timestamp_sec,
- blink::WebTouchEvent* event);
-
- // Like ResetType but also resets the state of all active touches
- // to match the event type. This is particularly useful, for example,
- // in sending a touchcancel for all active touches.
- static void ResetTypeAndTouchStates(blink::WebInputEvent::Type type,
- double timestamp_sec,
- blink::WebTouchEvent* event);
-};
-
-} // namespace content
-
-#endif // CONTENT_COMMON_INPUT_WEB_TOUCH_EVENT_TRAITS_H_
« no previous file with comments | « content/common/input/web_input_event_traits_unittest.cc ('k') | content/common/input/web_touch_event_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698