OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 5 #ifndef WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
6 #define WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 6 #define WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
7 | 7 |
8 #include "base/string16.h" | 8 #include "base/string16.h" |
9 | 9 |
10 namespace webkit_glue { | 10 namespace webkit_glue { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 ROLE_CHECKBUTTON, | 70 ROLE_CHECKBUTTON, |
71 ROLE_CLIENT, | 71 ROLE_CLIENT, |
72 ROLE_COLUMN, | 72 ROLE_COLUMN, |
73 ROLE_COLUMNHEADER, | 73 ROLE_COLUMNHEADER, |
74 ROLE_DOCUMENT, | 74 ROLE_DOCUMENT, |
75 ROLE_GRAPHIC, | 75 ROLE_GRAPHIC, |
76 ROLE_GROUPING, | 76 ROLE_GROUPING, |
77 ROLE_LINK, | 77 ROLE_LINK, |
78 ROLE_LIST, | 78 ROLE_LIST, |
79 ROLE_LISTBOX, | 79 ROLE_LISTBOX, |
| 80 ROLE_LISTITEM, |
80 ROLE_MENUBAR, | 81 ROLE_MENUBAR, |
81 ROLE_MENUITEM, | 82 ROLE_MENUITEM, |
82 ROLE_MENUPOPUP, | 83 ROLE_MENUPOPUP, |
83 ROLE_OUTLINE, | 84 ROLE_OUTLINE, |
84 ROLE_PAGETABLIST, | 85 ROLE_PAGETABLIST, |
85 ROLE_PROGRESSBAR, | 86 ROLE_PROGRESSBAR, |
86 ROLE_PUSHBUTTON, | 87 ROLE_PUSHBUTTON, |
87 ROLE_RADIOBUTTON, | 88 ROLE_RADIOBUTTON, |
88 ROLE_ROW, | 89 ROLE_ROW, |
89 ROLE_ROWHEADER, | 90 ROLE_ROWHEADER, |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 // Interface-specific error return codes (e.g. MSAA's E_POINTER, | 163 // Interface-specific error return codes (e.g. MSAA's E_POINTER, |
163 // E_INVALIDARG, E_FAIL, E_NOTIMPL) must be handled on the browser side by | 164 // E_INVALIDARG, E_FAIL, E_NOTIMPL) must be handled on the browser side by |
164 // input validation. | 165 // input validation. |
165 bool return_code; | 166 bool return_code; |
166 }; | 167 }; |
167 }; | 168 }; |
168 | 169 |
169 } // namespace webkit_glue | 170 } // namespace webkit_glue |
170 | 171 |
171 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 172 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
OLD | NEW |