Roboto has shipped to stable channel for a while and it works fine. This CL cleans...
[chromium-blink-merge.git] / ui / touch_selection / touch_handle_orientation.h
blobe76e73e9e69ac2d3e888fd983bcee97ee18d6934
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.
5 #ifndef UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_
6 #define UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_
8 namespace ui {
10 // Orientation types for Touch handles, used for setting the type of
11 // handle orientation on java and native side.
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,
22 } // namespace ui
24 #endif // UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_