OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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 CC_INPUT_EVENT_LISTENER_PROPERTIES_H_ |
| 6 #define CC_INPUT_EVENT_LISTENER_PROPERTIES_H_ |
| 7 |
| 8 namespace cc { |
| 9 |
| 10 struct EventListenerProperties { |
| 11 enum : uint32_t { kNone = 0 }; |
| 12 enum : uint32_t { kBlocking = 1 << 0 }; |
| 13 enum : uint32_t { kPassive = 1 << 1 }; |
| 14 enum : uint32_t { kMax = kPassive | kBlocking }; |
| 15 }; |
| 16 |
| 17 } // namespace cc |
| 18 |
| 19 #endif // CC_INPUT_EVENT_LISTENER_PROPERTIES_H_ |
OLD | NEW |