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 24 matching lines...) Expand all Loading... |
35 const char kTypeMenuItem[] = "menuitem"; | 35 const char kTypeMenuItem[] = "menuitem"; |
36 const char kTypeRadioButton[] = "radiobutton"; | 36 const char kTypeRadioButton[] = "radiobutton"; |
37 const char kTypeSlider[] = "slider"; | 37 const char kTypeSlider[] = "slider"; |
38 const char kTypeStaticText[] = "statictext"; | 38 const char kTypeStaticText[] = "statictext"; |
39 const char kTypeTab[] = "tab"; | 39 const char kTypeTab[] = "tab"; |
40 const char kTypeTextBox[] = "textbox"; | 40 const char kTypeTextBox[] = "textbox"; |
41 const char kTypeTree[] = "tree"; | 41 const char kTypeTree[] = "tree"; |
42 const char kTypeTreeItem[] = "treeitem"; | 42 const char kTypeTreeItem[] = "treeitem"; |
43 const char kTypeWindow[] = "window"; | 43 const char kTypeWindow[] = "window"; |
44 | 44 |
| 45 // Errors. |
| 46 const char kErrorNotSupported[] = "This API is not supported on this platform."; |
| 47 |
45 } // namespace extension_accessibility_api_constants | 48 } // namespace extension_accessibility_api_constants |
OLD | NEW |