| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 std::vector<int32> cell_ids; | 302 std::vector<int32> cell_ids; |
| 302 | 303 |
| 303 // For a table, the unique cell ids in row-major order of their first | 304 // For a table, the unique cell ids in row-major order of their first |
| 304 // occurrence. | 305 // occurrence. |
| 305 std::vector<int32> unique_cell_ids; | 306 std::vector<int32> unique_cell_ids; |
| 306 }; | 307 }; |
| 307 | 308 |
| 308 } // namespace webkit_glue | 309 } // namespace webkit_glue |
| 309 | 310 |
| 310 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 311 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
| OLD | NEW |