| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 inner_html, | 340 inner_html, |
| 341 key_shortcuts, | 341 key_shortcuts, |
| 342 // Only present when different from parent. | 342 // Only present when different from parent. |
| 343 language, | 343 language, |
| 344 name, | 344 name, |
| 345 live_relevant, | 345 live_relevant, |
| 346 live_status, | 346 live_status, |
| 347 placeholder, | 347 placeholder, |
| 348 role, | 348 role, |
| 349 role_description, | 349 role_description, |
| 350 shortcut, | |
| 351 url, | 350 url, |
| 352 value | 351 value |
| 353 }; | 352 }; |
| 354 | 353 |
| 355 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute { | 354 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute { |
| 356 default_action_verb, | 355 default_action_verb, |
| 357 // Scrollable container attributes. | 356 // Scrollable container attributes. |
| 358 scroll_x, | 357 scroll_x, |
| 359 scroll_x_min, | 358 scroll_x_min, |
| 360 scroll_x_max, | 359 scroll_x_max, |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 // First node is before the second one. | 672 // First node is before the second one. |
| 674 before, | 673 before, |
| 675 | 674 |
| 676 // Nodes are the same. | 675 // Nodes are the same. |
| 677 equal, | 676 equal, |
| 678 | 677 |
| 679 // First node is after the second one. | 678 // First node is after the second one. |
| 680 after | 679 after |
| 681 }; | 680 }; |
| 682 }; | 681 }; |
| OLD | NEW |