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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 }; | 64 }; |
65 | 65 |
66 enum AXRole { | 66 enum AXRole { |
67 alert_dialog, | 67 alert_dialog, |
68 alert, | 68 alert, |
69 annotation, | 69 annotation, |
70 application, | 70 application, |
71 article, | 71 article, |
72 banner, | 72 banner, |
73 blockquote, | 73 blockquote, |
| 74 // TODO(nektar): Remove busy_indicator because it's used nowhere. |
74 busy_indicator, | 75 busy_indicator, |
75 button, | 76 button, |
76 button_drop_down, | 77 button_drop_down, |
77 canvas, | 78 canvas, |
78 caption, | 79 caption, |
79 cell, | 80 cell, |
80 check_box, | 81 check_box, |
81 client, | 82 client, |
82 color_well, | 83 color_well, |
83 column_header, | 84 column_header, |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 }; | 423 }; |
423 | 424 |
424 [cpp_enum_prefix_override="ax"] enum AXSortDirection { | 425 [cpp_enum_prefix_override="ax"] enum AXSortDirection { |
425 sort_direction_unsorted, | 426 sort_direction_unsorted, |
426 sort_direction_ascending, | 427 sort_direction_ascending, |
427 sort_direction_descending, | 428 sort_direction_descending, |
428 sort_direction_other | 429 sort_direction_other |
429 }; | 430 }; |
430 | 431 |
431 }; | 432 }; |
OLD | NEW |