OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef UI_BASE_EVENT_H_ | 5 #ifndef UI_BASE_EVENT_H_ |
6 #define UI_BASE_EVENT_H_ | 6 #define UI_BASE_EVENT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/event_types.h" | 10 #include "base/event_types.h" |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 // This value is stored as a bitfield because the number of touch ids varies, | 413 // This value is stored as a bitfield because the number of touch ids varies, |
414 // but we currently don't need more than 32 touches at a time. | 414 // but we currently don't need more than 32 touches at a time. |
415 const unsigned int touch_ids_bitfield_; | 415 const unsigned int touch_ids_bitfield_; |
416 | 416 |
417 DISALLOW_COPY_AND_ASSIGN(GestureEventImpl); | 417 DISALLOW_COPY_AND_ASSIGN(GestureEventImpl); |
418 }; | 418 }; |
419 | 419 |
420 } // namespace ui | 420 } // namespace ui |
421 | 421 |
422 #endif // UI_BASE_EVENT_H_ | 422 #endif // UI_BASE_EVENT_H_ |
OLD | NEW |