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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 inner_html, | 341 inner_html, |
342 key_shortcuts, | 342 key_shortcuts, |
343 // Only present when different from parent. | 343 // Only present when different from parent. |
344 language, | 344 language, |
345 name, | 345 name, |
346 live_relevant, | 346 live_relevant, |
347 live_status, | 347 live_status, |
348 placeholder, | 348 placeholder, |
349 role, | 349 role, |
350 role_description, | 350 role_description, |
351 shortcut, | |
352 url, | 351 url, |
353 value | 352 value |
354 }; | 353 }; |
355 | 354 |
356 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute { | 355 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute { |
357 default_action_verb, | 356 default_action_verb, |
358 // Scrollable container attributes. | 357 // Scrollable container attributes. |
359 scroll_x, | 358 scroll_x, |
360 scroll_x_min, | 359 scroll_x_min, |
361 scroll_x_max, | 360 scroll_x_max, |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 // First node is before the second one. | 661 // First node is before the second one. |
663 before, | 662 before, |
664 | 663 |
665 // Nodes are the same. | 664 // Nodes are the same. |
666 equal, | 665 equal, |
667 | 666 |
668 // First node is after the second one. | 667 // First node is after the second one. |
669 after | 668 after |
670 }; | 669 }; |
671 }; | 670 }; |
OLD | NEW |