summaryrefslogtreecommitdiff
path: root/chromium/ui/touch_selection/touch_handle_orientation.h
blob: e76e73e9e69ac2d3e888fd983bcee97ee18d6934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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_