| OLD | NEW |
| 1 | |
| 2 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 // 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 |
| 4 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 5 | 4 |
| 6 #ifndef UI_EVENTS_ANDROID_MOTION_EVENT_ANDROID_H_ | 5 #ifndef UI_EVENTS_ANDROID_MOTION_EVENT_ANDROID_H_ |
| 7 #define UI_EVENTS_ANDROID_MOTION_EVENT_ANDROID_H_ | 6 #define UI_EVENTS_ANDROID_MOTION_EVENT_ANDROID_H_ |
| 8 | 7 |
| 9 #include <jni.h> | 8 #include <jni.h> |
| 10 #include <stddef.h> | 9 #include <stddef.h> |
| 11 #include <stdint.h> | 10 #include <stdint.h> |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 130 |
| 132 // A unique identifier for the Android motion event. | 131 // A unique identifier for the Android motion event. |
| 133 const uint32_t unique_event_id_; | 132 const uint32_t unique_event_id_; |
| 134 | 133 |
| 135 DISALLOW_COPY_AND_ASSIGN(MotionEventAndroid); | 134 DISALLOW_COPY_AND_ASSIGN(MotionEventAndroid); |
| 136 }; | 135 }; |
| 137 | 136 |
| 138 } // namespace content | 137 } // namespace content |
| 139 | 138 |
| 140 #endif // UI_EVENTS_ANDROID_MOTION_EVENT_ANDROID_H_ | 139 #endif // UI_EVENTS_ANDROID_MOTION_EVENT_ANDROID_H_ |
| OLD | NEW |