| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 scroll_x_min, | 259 scroll_x_min, |
| 260 scroll_x_max, | 260 scroll_x_max, |
| 261 scroll_y, | 261 scroll_y, |
| 262 scroll_y_min, | 262 scroll_y_min, |
| 263 scroll_y_max, | 263 scroll_y_max, |
| 264 | 264 |
| 265 // Attributes for retrieving the endpoints of a selection. | 265 // Attributes for retrieving the endpoints of a selection. |
| 266 text_sel_start, | 266 text_sel_start, |
| 267 text_sel_end, | 267 text_sel_end, |
| 268 | 268 |
| 269 // aria_col* and aria_row* attributes |
| 270 aria_col_count, |
| 271 aria_col_index, |
| 272 aria_row_count, |
| 273 aria_row_index, |
| 274 |
| 269 // Table attributes. | 275 // Table attributes. |
| 270 table_row_count, | 276 table_row_count, |
| 271 table_column_count, | 277 table_column_count, |
| 272 table_header_id, | 278 table_header_id, |
| 273 | 279 |
| 274 // Table row attributes. | 280 // Table row attributes. |
| 275 table_row_index, | 281 table_row_index, |
| 276 table_row_header_id, | 282 table_row_header_id, |
| 277 | 283 |
| 278 // Table column attributes. | 284 // Table column attributes. |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 }; | 449 }; |
| 444 | 450 |
| 445 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { | 451 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { |
| 446 description_from_uninitialized = 0, | 452 description_from_uninitialized = 0, |
| 447 description_from_attribute, | 453 description_from_attribute, |
| 448 description_from_contents, | 454 description_from_contents, |
| 449 description_from_placeholder, | 455 description_from_placeholder, |
| 450 description_from_related_element | 456 description_from_related_element |
| 451 }; | 457 }; |
| 452 }; | 458 }; |
| OLD | NEW |