| 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_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 |
| 11 namespace extension_accessibility_api_constants { | 11 namespace extension_accessibility_api_constants { |
| 12 | 12 |
| 13 // Keys. | 13 // Keys. |
| 14 extern const char kTypeKey[]; | 14 extern const char kTypeKey[]; |
| 15 extern const char kNameKey[]; | 15 extern const char kNameKey[]; |
| 16 extern const char kContextKey[]; |
| 16 extern const char kDetailsKey[]; | 17 extern const char kDetailsKey[]; |
| 17 extern const char kValueKey[]; | 18 extern const char kValueKey[]; |
| 18 extern const char kPasswordKey[]; | 19 extern const char kPasswordKey[]; |
| 19 extern const char kItemCountKey[]; | 20 extern const char kItemCountKey[]; |
| 20 extern const char kItemIndexKey[]; | 21 extern const char kItemIndexKey[]; |
| 21 extern const char kSelectionStartKey[]; | 22 extern const char kSelectionStartKey[]; |
| 22 extern const char kSelectionEndKey[]; | 23 extern const char kSelectionEndKey[]; |
| 23 extern const char kCheckedKey[]; | 24 extern const char kCheckedKey[]; |
| 24 extern const char kHasSubmenuKey[]; | 25 extern const char kHasSubmenuKey[]; |
| 25 extern const char kVolumeKey[]; | 26 extern const char kVolumeKey[]; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 47 extern const char kTypeMenuItem[]; | 48 extern const char kTypeMenuItem[]; |
| 48 extern const char kTypeRadioButton[]; | 49 extern const char kTypeRadioButton[]; |
| 49 extern const char kTypeTab[]; | 50 extern const char kTypeTab[]; |
| 50 extern const char kTypeTextBox[]; | 51 extern const char kTypeTextBox[]; |
| 51 extern const char kTypeVolume[]; | 52 extern const char kTypeVolume[]; |
| 52 extern const char kTypeWindow[]; | 53 extern const char kTypeWindow[]; |
| 53 | 54 |
| 54 }; // namespace extension_accessibility_api_constants | 55 }; // namespace extension_accessibility_api_constants |
| 55 | 56 |
| 56 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ | 57 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ |
| OLD | NEW |