OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_ |
| 6 #define UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_ |
| 7 |
| 8 namespace ui { |
| 9 |
| 10 // Orientation types for Touch handles, used for setting the type of |
| 11 // handle orientation on java and native side. |
| 12 |
| 13 // A Java counterpart will be generated for this enum. |
| 14 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.ui.touch_selection |
| 15 enum class TouchHandleOrientation { |
| 16 LEFT, |
| 17 CENTER, |
| 18 RIGHT, |
| 19 UNDEFINED, |
| 20 }; |
| 21 |
| 22 } // namespace ui |
| 23 |
| 24 #endif // UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_ |
OLD | NEW |