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 // Constants used to for the Accessibility API. | 5 // Constants used to for the Accessibility API. |
6 | 6 |
7 #ifndef CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ |
8 #define CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ | 8 #define CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 // Types of controls that can receive accessibility events | 37 // Types of controls that can receive accessibility events |
38 extern const char kTypeButton[]; | 38 extern const char kTypeButton[]; |
39 extern const char kTypeCheckbox[]; | 39 extern const char kTypeCheckbox[]; |
40 extern const char kTypeComboBox[]; | 40 extern const char kTypeComboBox[]; |
41 extern const char kTypeLink[]; | 41 extern const char kTypeLink[]; |
42 extern const char kTypeListBox[]; | 42 extern const char kTypeListBox[]; |
43 extern const char kTypeMenu[]; | 43 extern const char kTypeMenu[]; |
44 extern const char kTypeMenuItem[]; | 44 extern const char kTypeMenuItem[]; |
45 extern const char kTypeRadioButton[]; | 45 extern const char kTypeRadioButton[]; |
| 46 extern const char kTypeSlider[]; |
46 extern const char kTypeTab[]; | 47 extern const char kTypeTab[]; |
47 extern const char kTypeTextBox[]; | 48 extern const char kTypeTextBox[]; |
48 extern const char kTypeVolume[]; | 49 extern const char kTypeVolume[]; |
49 extern const char kTypeWindow[]; | 50 extern const char kTypeWindow[]; |
50 | 51 |
51 }; // namespace extension_accessibility_api_constants | 52 }; // namespace extension_accessibility_api_constants |
52 | 53 |
53 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ | 54 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ |
OLD | NEW |