| 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 // TODO(nektar): Migrate entire file to Mojoq. | 5 // TODO(nektar): Migrate entire file to Mojoq. |
| 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h | 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h |
| 7 // until the Chromium and Blink trees are merged. | 7 // until the Chromium and Blink trees are merged. |
| 8 [camel_case_enum_to_string=true] namespace ui { | 8 [camel_case_enum_to_string=true] namespace ui { |
| 9 | 9 |
| 10 // For new entries to the following four enums, also add to | 10 // For new entries to the following four enums, also add to |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 subtree_created, | 319 subtree_created, |
| 320 node_changed, | 320 node_changed, |
| 321 node_removed | 321 node_removed |
| 322 }; | 322 }; |
| 323 | 323 |
| 324 [cpp_enum_prefix_override="ax_attr"] enum AXStringAttribute { | 324 [cpp_enum_prefix_override="ax_attr"] enum AXStringAttribute { |
| 325 access_key, | 325 access_key, |
| 326 // Only used when invalid_state == invalid_state_other. | 326 // Only used when invalid_state == invalid_state_other. |
| 327 aria_invalid_value, | 327 aria_invalid_value, |
| 328 auto_complete, | 328 auto_complete, |
| 329 chrome_channel, // Automation only. |
| 329 container_live_relevant, | 330 container_live_relevant, |
| 330 container_live_status, | 331 container_live_status, |
| 331 description, | 332 description, |
| 332 display, | 333 display, |
| 333 // Only present when different from parent. | 334 // Only present when different from parent. |
| 334 font_family, | 335 font_family, |
| 335 html_tag, | 336 html_tag, |
| 336 image_data_url, | 337 image_data_url, |
| 337 // Only present when different from parent. | 338 // Only present when different from parent. |
| 338 language, | 339 language, |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 // First node is before the second one. | 646 // First node is before the second one. |
| 646 before, | 647 before, |
| 647 | 648 |
| 648 // Nodes are the same. | 649 // Nodes are the same. |
| 649 equal, | 650 equal, |
| 650 | 651 |
| 651 // First node is after the second one. | 652 // First node is after the second one. |
| 652 after | 653 after |
| 653 }; | 654 }; |
| 654 }; | 655 }; |
| OLD | NEW |