Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(433)

Side by Side Diff: ui/accessibility/platform/ax_android_constants.cc

Issue 2726433002: Complete initial role and state mappings for ARC++ accessibility (Closed)
Patch Set: Export. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/accessibility/platform/ax_android_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 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 #include "ui/accessibility/platform/ax_android_constants.h"
6
7 namespace ui {
8
9 const char kAXAbsListViewClassname[] = "android.widget.AbsListView";
10 const char kAXButtonClassname[] = "android.widget.Button";
11 const char kAXCheckBoxClassname[] = "android.widget.CheckBox";
12 const char kAXCheckedTextViewClassname[] = " android.widget.CheckedTextView";
13 const char kAXCompoundButtonClassname[] = "android.widget.CompoundButton";
14 const char kAXDialogClassname[] = "android.app.Dialog";
15 const char kAXEditTextClassname[] = "android.widget.EditText";
16 const char kAXGridViewClassname[] = "android.widget.GridView";
17 const char kAXImageClassname[] = "android.widget.Image";
18 const char kAXImageViewClassname[] = "android.widget.ImageView";
19 const char kAXListViewClassname[] = "android.widget.ListView";
20 const char kAXMenuItemClassname[] = "android.view.MenuItem";
21 const char kAXPagerClassname[] = "android.support.v4.view.ViewPager";
22 const char kAXProgressBarClassname[] = "android.widget.ProgressBar";
23 const char kAXRadioButtonClassname[] = "android.widget.RadioButton";
24 const char kAXSeekBarClassname[] = "android.widget.SeekBar";
25 const char kAXSpinnerClassname[] = "android.widget.Spinner";
26 const char kAXSwitchClassname[] = "android.widget.Switch";
27 const char kAXTabWidgetClassname[] = "android.widget.TabWidget";
28 const char kAXToggleButtonClassname[] = "android.widget.ToggleButton";
29 const char kAXViewClassname[] = "android.view.View";
30 const char kAXViewGroupClassname[] = "android.view.ViewGroup";
31 const char kAXWebViewClassname[] = "android.webkit.WebView";
32
33 } // namespace ui
OLDNEW
« no previous file with comments | « ui/accessibility/platform/ax_android_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698