OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "ui/accessibility/ax_node_data.h" | 5 #include "ui/accessibility/ax_node_data.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 break; | 273 break; |
274 case AX_ATTR_AUTO_COMPLETE: | 274 case AX_ATTR_AUTO_COMPLETE: |
275 result += " autocomplete=" + value; | 275 result += " autocomplete=" + value; |
276 break; | 276 break; |
277 case AX_ATTR_DESCRIPTION: | 277 case AX_ATTR_DESCRIPTION: |
278 result += " description=" + value; | 278 result += " description=" + value; |
279 break; | 279 break; |
280 case AX_ATTR_DISPLAY: | 280 case AX_ATTR_DISPLAY: |
281 result += " display=" + value; | 281 result += " display=" + value; |
282 break; | 282 break; |
| 283 case AX_ATTR_DROPEFFECT: |
| 284 result += " dropeffect=" + value; |
| 285 break; |
283 case AX_ATTR_HELP: | 286 case AX_ATTR_HELP: |
284 result += " help=" + value; | 287 result += " help=" + value; |
285 break; | 288 break; |
286 case AX_ATTR_HTML_TAG: | 289 case AX_ATTR_HTML_TAG: |
287 result += " html_tag=" + value; | 290 result += " html_tag=" + value; |
288 break; | 291 break; |
289 case AX_ATTR_ARIA_INVALID_VALUE: | 292 case AX_ATTR_ARIA_INVALID_VALUE: |
290 result += " aria_invalid_value=" + value; | 293 result += " aria_invalid_value=" + value; |
291 break; | 294 break; |
292 case AX_ATTR_LIVE_RELEVANT: | 295 case AX_ATTR_LIVE_RELEVANT: |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 } | 438 } |
436 } | 439 } |
437 | 440 |
438 if (!child_ids.empty()) | 441 if (!child_ids.empty()) |
439 result += " child_ids=" + IntVectorToString(child_ids); | 442 result += " child_ids=" + IntVectorToString(child_ids); |
440 | 443 |
441 return result; | 444 return result; |
442 } | 445 } |
443 | 446 |
444 } // namespace ui | 447 } // namespace ui |
OLD | NEW |