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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
200 enum AXState { | 200 enum AXState { |
201 busy, | 201 busy, |
202 checked, | 202 checked, |
203 collapsed, | 203 collapsed, |
204 default, | 204 default, |
205 disabled, // ui/views only | 205 disabled, // ui/views only |
206 editable, | 206 editable, |
207 enabled, // content only | 207 enabled, // content only |
208 expanded, | 208 expanded, |
209 focusable, | 209 focusable, |
210 focused, | |
dmazzoni
2016/06/29 16:24:10
We used to have "focused" as a state here, but we
Patti Lor
2016/06/30 05:29:54
Oh I see, thank you! Have removed it and used Nati
| |
210 haspopup, | 211 haspopup, |
211 horizontal, | 212 horizontal, |
212 hovered, | 213 hovered, |
213 invisible, | 214 invisible, |
214 linked, | 215 linked, |
215 multiline, | 216 multiline, |
216 multiselectable, | 217 multiselectable, |
217 offscreen, | 218 offscreen, |
218 pressed, | 219 pressed, |
219 protected, | 220 protected, |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
504 swipe_left_3, | 505 swipe_left_3, |
505 swipe_up_3, | 506 swipe_up_3, |
506 swipe_right_3, | 507 swipe_right_3, |
507 swipe_down_3, | 508 swipe_down_3, |
508 swipe_left_4, | 509 swipe_left_4, |
509 swipe_up_4, | 510 swipe_up_4, |
510 swipe_right_4, | 511 swipe_right_4, |
511 swipe_down_4 | 512 swipe_down_4 |
512 }; | 513 }; |
513 }; | 514 }; |
OLD | NEW |