OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/accessibility/accessibility_extension_api_constants.h" | 5 #include "chrome/browser/accessibility/accessibility_extension_api_constants.h" |
6 | 6 |
7 namespace extension_accessibility_api_constants { | 7 namespace extension_accessibility_api_constants { |
8 | 8 |
9 // String keys for AccessibilityObject properties. | 9 // String keys for AccessibilityObject properties. |
10 const char kTypeKey[] = "type"; | 10 const char kTypeKey[] = "type"; |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 // Types of controls that can receive accessibility events. | 33 // Types of controls that can receive accessibility events. |
34 const char kTypeButton[] = "button"; | 34 const char kTypeButton[] = "button"; |
35 const char kTypeCheckbox[] = "checkbox"; | 35 const char kTypeCheckbox[] = "checkbox"; |
36 const char kTypeComboBox[] = "combobox"; | 36 const char kTypeComboBox[] = "combobox"; |
37 const char kTypeLink[] = "link"; | 37 const char kTypeLink[] = "link"; |
38 const char kTypeListBox[] = "listbox"; | 38 const char kTypeListBox[] = "listbox"; |
39 const char kTypeMenu[] = "menu"; | 39 const char kTypeMenu[] = "menu"; |
40 const char kTypeMenuItem[] = "menuitem"; | 40 const char kTypeMenuItem[] = "menuitem"; |
41 const char kTypeRadioButton[] = "radiobutton"; | 41 const char kTypeRadioButton[] = "radiobutton"; |
| 42 const char kTypeSlider[] = "slider"; |
42 const char kTypeTab[] = "tab"; | 43 const char kTypeTab[] = "tab"; |
43 const char kTypeTextBox[] = "textbox"; | 44 const char kTypeTextBox[] = "textbox"; |
44 const char kTypeWindow[] = "window"; | 45 const char kTypeWindow[] = "window"; |
45 | 46 |
46 } // namespace extension_accessibility_api_constants | 47 } // namespace extension_accessibility_api_constants |
OLD | NEW |