Index: ui/touch_selection/touch_handle_orientation.h |
diff --git a/ui/touch_selection/touch_handle_orientation.h b/ui/touch_selection/touch_handle_orientation.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e76e73e9e69ac2d3e888fd983bcee97ee18d6934 |
--- /dev/null |
+++ b/ui/touch_selection/touch_handle_orientation.h |
@@ -0,0 +1,24 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_ |
+#define UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_ |
+ |
+namespace ui { |
+ |
+// Orientation types for Touch handles, used for setting the type of |
+// handle orientation on java and native side. |
+ |
+// A Java counterpart will be generated for this enum. |
+// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.ui.touch_selection |
+enum class TouchHandleOrientation { |
+ LEFT, |
+ CENTER, |
+ RIGHT, |
+ UNDEFINED, |
+}; |
+ |
+} // namespace ui |
+ |
+#endif // UI_TOUCH_SELECTION_TOUCH_HANDLE_ORIENTATION_ |