| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/events/ozone/evdev/event_dispatch_callback.h" | 5 #include "ui/events/ozone/evdev/device_event_dispatcher_evdev.h" |
| 6 | 6 |
| 7 namespace ui { | 7 namespace ui { |
| 8 | 8 |
| 9 ScrollEventParams::ScrollEventParams(int device_id, | 9 ScrollEventParams::ScrollEventParams(int device_id, |
| 10 EventType type, | 10 EventType type, |
| 11 const gfx::PointF location, | 11 const gfx::PointF location, |
| 12 const gfx::Vector2dF delta, | 12 const gfx::Vector2dF delta, |
| 13 const gfx::Vector2dF ordinal_delta, | 13 const gfx::Vector2dF ordinal_delta, |
| 14 int finger_count, | 14 int finger_count, |
| 15 const base::TimeDelta timestamp) | 15 const base::TimeDelta timestamp) |
| (...skipping 26 matching lines...) Expand all Loading... |
| 42 pressure(pressure), | 42 pressure(pressure), |
| 43 timestamp(timestamp) { | 43 timestamp(timestamp) { |
| 44 } | 44 } |
| 45 | 45 |
| 46 TouchEventParams::TouchEventParams(const TouchEventParams& other) = default; | 46 TouchEventParams::TouchEventParams(const TouchEventParams& other) = default; |
| 47 | 47 |
| 48 TouchEventParams::~TouchEventParams() { | 48 TouchEventParams::~TouchEventParams() { |
| 49 } | 49 } |
| 50 | 50 |
| 51 } // namspace ui | 51 } // namspace ui |
| OLD | NEW |