OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h | 5 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h |
6 // until the Chromium and Blink trees are merged. | 6 // until the Chromium and Blink trees are merged. |
7 [camel_case_enum_to_string=true] namespace ui { | 7 [camel_case_enum_to_string=true] namespace ui { |
8 | 8 |
9 // For new entries to the following three enums, also add to | 9 // For new entries to the following three enums, also add to |
10 // chrome/common/extensions/api/automation.idl. | 10 // chrome/common/extensions/api/automation.idl. |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
262 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute { | 262 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute { |
263 // Scrollable container attributes. | 263 // Scrollable container attributes. |
264 scroll_x, | 264 scroll_x, |
265 scroll_x_min, | 265 scroll_x_min, |
266 scroll_x_max, | 266 scroll_x_max, |
267 scroll_y, | 267 scroll_y, |
268 scroll_y_min, | 268 scroll_y_min, |
269 scroll_y_max, | 269 scroll_y_max, |
270 | 270 |
271 // Editable text attributes. | 271 // Editable text attributes. |
272 obj_sel_start, | |
dmazzoni
2015/06/22 19:23:21
How about doc_sel_start instead?
| |
272 text_sel_start, | 273 text_sel_start, |
274 obj_sel_end, | |
273 text_sel_end, | 275 text_sel_end, |
274 | 276 |
275 // Table attributes. | 277 // Table attributes. |
276 table_row_count, | 278 table_row_count, |
277 table_column_count, | 279 table_column_count, |
278 table_header_id, | 280 table_header_id, |
279 | 281 |
280 // Table row attributes. | 282 // Table row attributes. |
281 table_row_index, | 283 table_row_index, |
282 table_row_header_id, | 284 table_row_header_id, |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
441 }; | 443 }; |
442 | 444 |
443 [cpp_enum_prefix_override="ax"] enum AXSortDirection { | 445 [cpp_enum_prefix_override="ax"] enum AXSortDirection { |
444 sort_direction_unsorted, | 446 sort_direction_unsorted, |
445 sort_direction_ascending, | 447 sort_direction_ascending, |
446 sort_direction_descending, | 448 sort_direction_descending, |
447 sort_direction_other | 449 sort_direction_other |
448 }; | 450 }; |
449 | 451 |
450 }; | 452 }; |
OLD | NEW |