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 #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 <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 ROLE_COLUMN_HEADER, | 49 ROLE_COLUMN_HEADER, |
50 ROLE_COMBO_BOX, | 50 ROLE_COMBO_BOX, |
51 ROLE_DEFINITION_LIST_DEFINITION, | 51 ROLE_DEFINITION_LIST_DEFINITION, |
52 ROLE_DEFINITION_LIST_TERM, | 52 ROLE_DEFINITION_LIST_TERM, |
53 ROLE_DIALOG, | 53 ROLE_DIALOG, |
54 ROLE_DIRECTORY, | 54 ROLE_DIRECTORY, |
55 ROLE_DISCLOSURE_TRIANGLE, | 55 ROLE_DISCLOSURE_TRIANGLE, |
56 ROLE_DOCUMENT, | 56 ROLE_DOCUMENT, |
57 ROLE_DRAWER, | 57 ROLE_DRAWER, |
58 ROLE_EDITABLE_TEXT, | 58 ROLE_EDITABLE_TEXT, |
| 59 ROLE_FOOTER, |
59 ROLE_GRID, | 60 ROLE_GRID, |
60 ROLE_GROUP, | 61 ROLE_GROUP, |
61 ROLE_GROW_AREA, | 62 ROLE_GROW_AREA, |
62 ROLE_HEADING, | 63 ROLE_HEADING, |
63 ROLE_HELP_TAG, | 64 ROLE_HELP_TAG, |
64 ROLE_IGNORED, | 65 ROLE_IGNORED, |
65 ROLE_IMAGE, | 66 ROLE_IMAGE, |
66 ROLE_IMAGE_MAP, | 67 ROLE_IMAGE_MAP, |
67 ROLE_IMAGE_MAP_LINK, | 68 ROLE_IMAGE_MAP_LINK, |
68 ROLE_INCREMENTOR, | 69 ROLE_INCREMENTOR, |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 std::vector<int32> cell_ids; | 300 std::vector<int32> cell_ids; |
300 | 301 |
301 // For a table, the unique cell ids in row-major order of their first | 302 // For a table, the unique cell ids in row-major order of their first |
302 // occurrence. | 303 // occurrence. |
303 std::vector<int32> unique_cell_ids; | 304 std::vector<int32> unique_cell_ids; |
304 }; | 305 }; |
305 | 306 |
306 } // namespace webkit_glue | 307 } // namespace webkit_glue |
307 | 308 |
308 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 309 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
OLD | NEW |