summaryrefslogtreecommitdiff
path: root/chromium/ui/accessibility/platform/ax_android_constants.h
blob: 7097da05ef23fcd835d4177de8d9206043bb0d92 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_ACCESSIBILITY_PLATFORM_AX_ANDROID_CONSTANTS_H_
#define UI_ACCESSIBILITY_PLATFORM_AX_ANDROID_CONSTANTS_H_


#include "ui/accessibility/ax_export.h"

namespace ui {

// Classnames.

AX_EXPORT extern const char kAXAutoCompleteTextViewClassname[];
AX_EXPORT extern const char kAXAbsListViewClassname[];
AX_EXPORT extern const char kAXButtonClassname[];
AX_EXPORT extern const char kAXCheckBoxClassname[];
AX_EXPORT extern const char kAXCompoundButtonClassname[];
AX_EXPORT extern const char kAXCheckedTextViewClassname[];
AX_EXPORT extern const char kAXDialogClassname[];
AX_EXPORT extern const char kAXEditTextClassname[];
AX_EXPORT extern const char kAXGridViewClassname[];
AX_EXPORT extern const char kAXHorizontalScrollViewClassname[];
AX_EXPORT extern const char kAXImageClassname[];
AX_EXPORT extern const char kAXImageButtonClassname[];
AX_EXPORT extern const char kAXImageViewClassname[];
AX_EXPORT extern const char kAXListViewClassname[];
AX_EXPORT extern const char kAXMenuItemClassname[];
AX_EXPORT extern const char kAXMultiAutoCompleteTextViewClassname[];
AX_EXPORT extern const char kAXPagerClassname[];
AX_EXPORT extern const char kAXProgressBarClassname[];
AX_EXPORT extern const char kAXRadioButtonClassname[];
AX_EXPORT extern const char kAXRadioGroupClassname[];
AX_EXPORT extern const char kAXScrollViewClassname[];
AX_EXPORT extern const char kAXSeekBarClassname[];
AX_EXPORT extern const char kAXSwitchClassname[];
AX_EXPORT extern const char kAXSpinnerClassname[];
AX_EXPORT extern const char kAXTabWidgetClassname[];
AX_EXPORT extern const char kAXTextViewClassname[];
AX_EXPORT extern const char kAXToggleButtonClassname[];
AX_EXPORT extern const char kAXViewClassname[];
AX_EXPORT extern const char kAXViewGroupClassname[];
AX_EXPORT extern const char kAXWebViewClassname[];
AX_EXPORT extern const char16_t kSecurePasswordBullet;

// View constants.

AX_EXPORT extern const int kAXAndroidInvalidViewId;

}  // namespace ui

#endif  // UI_ACCESSIBILITY_PLATFORM_AX_ANDROID_CONSTANTS_H_