OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WebPointerProperties_h |
| 6 #define WebPointerProperties_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 // This class encapsulates the properties that are common between mouse and |
| 11 // pointer events and touch points as we transition towards the unified pointer |
| 12 // event model. |
| 13 // TODO(e_hakkinen): Replace WebTouchEvent with WebPointerEvent, remove |
| 14 // WebTouchEvent and WebTouchPoint and merge this into WebPointerEvent. |
| 15 class WebPointerProperties { |
| 16 public: |
| 17 WebPointerProperties() |
| 18 : button(ButtonNone) |
| 19 , id(0) |
| 20 , force(0.f) |
| 21 { |
| 22 } |
| 23 |
| 24 enum Button { |
| 25 ButtonNone = -1, |
| 26 ButtonLeft, |
| 27 ButtonMiddle, |
| 28 ButtonRight |
| 29 }; |
| 30 |
| 31 Button button; |
| 32 |
| 33 int id; |
| 34 float force; |
| 35 }; |
| 36 |
| 37 } // namespace blink |
| 38 |
| 39 #endif |
OLD | NEW |