Chromium Code Reviews

Side by Side Diff: chrome/browser/extensions/extension_accessibility_api_constants.h

Issue 1585011: Add menu and menu item events to the accessibility extension api, and... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 9
10 namespace extension_accessibility_api_constants { 10 namespace extension_accessibility_api_constants {
11 11
12 // Keys. 12 // Keys.
13 extern const wchar_t kTypeKey[]; 13 extern const wchar_t kTypeKey[];
14 extern const wchar_t kNameKey[]; 14 extern const wchar_t kNameKey[];
15 extern const wchar_t kDetailsKey[]; 15 extern const wchar_t kDetailsKey[];
16 extern const wchar_t kValueKey[]; 16 extern const wchar_t kValueKey[];
17 extern const wchar_t kPasswordKey[]; 17 extern const wchar_t kPasswordKey[];
18 extern const wchar_t kItemCountKey[]; 18 extern const wchar_t kItemCountKey[];
19 extern const wchar_t kItemIndexKey[]; 19 extern const wchar_t kItemIndexKey[];
20 extern const wchar_t kSelectionStartKey[]; 20 extern const wchar_t kSelectionStartKey[];
21 extern const wchar_t kSelectionEndKey[]; 21 extern const wchar_t kSelectionEndKey[];
22 extern const wchar_t kCheckedKey[]; 22 extern const wchar_t kCheckedKey[];
23 extern const wchar_t kHasSubmenuKey[];
23 24
24 // Events. 25 // Events.
25 extern const char kOnWindowOpened[]; 26 extern const char kOnWindowOpened[];
26 extern const char kOnWindowClosed[]; 27 extern const char kOnWindowClosed[];
27 extern const char kOnControlFocused[]; 28 extern const char kOnControlFocused[];
28 extern const char kOnControlAction[]; 29 extern const char kOnControlAction[];
29 extern const char kOnTextChanged[]; 30 extern const char kOnTextChanged[];
31 extern const char kOnMenuOpened[];
32 extern const char kOnMenuClosed[];
30 33
31 // Types of controls that can receive accessibility events 34 // Types of controls that can receive accessibility events
32 extern const char kTypeButton[]; 35 extern const char kTypeButton[];
33 extern const char kTypeCheckbox[]; 36 extern const char kTypeCheckbox[];
34 extern const char kTypeComboBox[]; 37 extern const char kTypeComboBox[];
35 extern const char kTypeLink[]; 38 extern const char kTypeLink[];
36 extern const char kTypeListBox[]; 39 extern const char kTypeListBox[];
40 extern const char kTypeMenu[];
41 extern const char kTypeMenuItem[];
37 extern const char kTypeRadioButton[]; 42 extern const char kTypeRadioButton[];
38 extern const char kTypeTab[]; 43 extern const char kTypeTab[];
39 extern const char kTypeTextBox[]; 44 extern const char kTypeTextBox[];
40 extern const char kTypeWindow[]; 45 extern const char kTypeWindow[];
41 46
42 }; // namespace extension_accessibility_api_constants 47 }; // namespace extension_accessibility_api_constants
43 48
44 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_ 49 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_
OLDNEW

Powered by Google App Engine