| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 314 |
| 315 [cpp_enum_prefix_override="ax_attr"] enum AXBoolAttribute { | 315 [cpp_enum_prefix_override="ax_attr"] enum AXBoolAttribute { |
| 316 // Document attributes. | 316 // Document attributes. |
| 317 doc_loaded, | 317 doc_loaded, |
| 318 | 318 |
| 319 // True if a checkbox or radio button is in the "mixed" state. | 319 // True if a checkbox or radio button is in the "mixed" state. |
| 320 button_mixed, | 320 button_mixed, |
| 321 | 321 |
| 322 // Live region attributes. | 322 // Live region attributes. |
| 323 container_live_atomic, | 323 container_live_atomic, |
| 324 container_live_busy, | |
| 325 live_atomic, | 324 live_atomic, |
| 326 live_busy, | 325 live_busy, |
| 327 | 326 |
| 328 // ARIA readonly flag. | 327 // ARIA readonly flag. |
| 329 aria_readonly, | 328 aria_readonly, |
| 330 | 329 |
| 331 // Writeable attributes | 330 // Writeable attributes |
| 332 can_set_value, | 331 can_set_value, |
| 333 | 332 |
| 334 // If this is set, all of the other fields in this struct should | 333 // If this is set, all of the other fields in this struct should |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 word_ends | 383 word_ends |
| 385 }; | 384 }; |
| 386 | 385 |
| 387 [cpp_enum_prefix_override="ax"] enum AXTextDirection { | 386 [cpp_enum_prefix_override="ax"] enum AXTextDirection { |
| 388 text_direction_lr, | 387 text_direction_lr, |
| 389 text_direction_rl, | 388 text_direction_rl, |
| 390 text_direction_tb, | 389 text_direction_tb, |
| 391 text_direction_bt | 390 text_direction_bt |
| 392 }; | 391 }; |
| 393 }; | 392 }; |
| OLD | NEW |