| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_ |
| 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 // Events. | 28 // Events. |
| 29 extern const char kOnWindowOpened[]; | 29 extern const char kOnWindowOpened[]; |
| 30 extern const char kOnWindowClosed[]; | 30 extern const char kOnWindowClosed[]; |
| 31 extern const char kOnControlFocused[]; | 31 extern const char kOnControlFocused[]; |
| 32 extern const char kOnControlAction[]; | 32 extern const char kOnControlAction[]; |
| 33 extern const char kOnTextChanged[]; | 33 extern const char kOnTextChanged[]; |
| 34 extern const char kOnMenuOpened[]; | 34 extern const char kOnMenuOpened[]; |
| 35 extern const char kOnMenuClosed[]; | 35 extern const char kOnMenuClosed[]; |
| 36 extern const char kOnVolumeChanged[]; | 36 extern const char kOnVolumeChanged[]; |
| 37 extern const char kOnScreenUnlocked[]; |
| 38 extern const char kOnWokeUp[]; |
| 37 | 39 |
| 38 // Types of controls that can receive accessibility events | 40 // Types of controls that can receive accessibility events |
| 39 extern const char kTypeButton[]; | 41 extern const char kTypeButton[]; |
| 40 extern const char kTypeCheckbox[]; | 42 extern const char kTypeCheckbox[]; |
| 41 extern const char kTypeComboBox[]; | 43 extern const char kTypeComboBox[]; |
| 42 extern const char kTypeLink[]; | 44 extern const char kTypeLink[]; |
| 43 extern const char kTypeListBox[]; | 45 extern const char kTypeListBox[]; |
| 44 extern const char kTypeMenu[]; | 46 extern const char kTypeMenu[]; |
| 45 extern const char kTypeMenuItem[]; | 47 extern const char kTypeMenuItem[]; |
| 46 extern const char kTypeRadioButton[]; | 48 extern const char kTypeRadioButton[]; |
| 47 extern const char kTypeTab[]; | 49 extern const char kTypeTab[]; |
| 48 extern const char kTypeTextBox[]; | 50 extern const char kTypeTextBox[]; |
| 49 extern const char kTypeVolume[]; | 51 extern const char kTypeVolume[]; |
| 50 extern const char kTypeWindow[]; | 52 extern const char kTypeWindow[]; |
| 51 | 53 |
| 52 }; // namespace extension_accessibility_api_constants | 54 }; // namespace extension_accessibility_api_constants |
| 53 | 55 |
| 54 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_ | 56 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_ |
| OLD | NEW |