Chromium Code Reviews| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 235 }; | 235 }; |
| 236 | 236 |
| 237 [cpp_enum_prefix_override="ax_attr"] enum AXStringAttribute { | 237 [cpp_enum_prefix_override="ax_attr"] enum AXStringAttribute { |
| 238 access_key, | 238 access_key, |
| 239 action, | 239 action, |
| 240 // Only used when invalid_state == invalid_state_other. | 240 // Only used when invalid_state == invalid_state_other. |
| 241 aria_invalid_value, | 241 aria_invalid_value, |
| 242 auto_complete, | 242 auto_complete, |
| 243 container_live_relevant, | 243 container_live_relevant, |
| 244 container_live_status, | 244 container_live_status, |
| 245 description, | 245 description, |
|
dmazzoni
2016/07/26 22:26:56
It's not obvious at all, but "description" maps to
Patti Lor
2016/07/27 02:59:00
Done - this involved rewriting the AXRoleDescripti
| |
| 246 display, | 246 display, |
| 247 // Only present when different from parent. | 247 // Only present when different from parent. |
| 248 font_family, | 248 font_family, |
| 249 help_text, | |
| 249 html_tag, | 250 html_tag, |
| 250 // Only present when different from parent. | 251 // Only present when different from parent. |
| 251 language, | 252 language, |
| 252 name, | 253 name, |
| 253 live_relevant, | 254 live_relevant, |
| 254 live_status, | 255 live_status, |
| 255 placeholder, | 256 placeholder, |
| 256 role, | 257 role, |
| 257 shortcut, | 258 shortcut, |
| 258 url, | 259 url, |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 505 swipe_left_3, | 506 swipe_left_3, |
| 506 swipe_up_3, | 507 swipe_up_3, |
| 507 swipe_right_3, | 508 swipe_right_3, |
| 508 swipe_down_3, | 509 swipe_down_3, |
| 509 swipe_left_4, | 510 swipe_left_4, |
| 510 swipe_up_4, | 511 swipe_up_4, |
| 511 swipe_right_4, | 512 swipe_right_4, |
| 512 swipe_down_4 | 513 swipe_down_4 |
| 513 }; | 514 }; |
| 514 }; | 515 }; |
| OLD | NEW |