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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 break; | 330 break; |
331 case AX_ATTR_LIVE_ATOMIC: | 331 case AX_ATTR_LIVE_ATOMIC: |
332 result += " atomic=" + value; | 332 result += " atomic=" + value; |
333 break; | 333 break; |
334 case AX_ATTR_LIVE_BUSY: | 334 case AX_ATTR_LIVE_BUSY: |
335 result += " busy=" + value; | 335 result += " busy=" + value; |
336 break; | 336 break; |
337 case AX_ATTR_CONTAINER_LIVE_ATOMIC: | 337 case AX_ATTR_CONTAINER_LIVE_ATOMIC: |
338 result += " container_atomic=" + value; | 338 result += " container_atomic=" + value; |
339 break; | 339 break; |
340 case AX_ATTR_CONTAINER_LIVE_BUSY: | |
341 result += " container_busy=" + value; | |
342 break; | |
343 case AX_ATTR_ARIA_READONLY: | 340 case AX_ATTR_ARIA_READONLY: |
344 result += " aria_readonly=" + value; | 341 result += " aria_readonly=" + value; |
345 break; | 342 break; |
346 case AX_ATTR_CAN_SET_VALUE: | 343 case AX_ATTR_CAN_SET_VALUE: |
347 result += " can_set_value=" + value; | 344 result += " can_set_value=" + value; |
348 break; | 345 break; |
349 case AX_ATTR_UPDATE_LOCATION_ONLY: | 346 case AX_ATTR_UPDATE_LOCATION_ONLY: |
350 result += " update_location_only=" + value; | 347 result += " update_location_only=" + value; |
351 break; | 348 break; |
352 case AX_ATTR_CANVAS_HAS_FALLBACK: | 349 case AX_ATTR_CANVAS_HAS_FALLBACK: |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 } | 401 } |
405 } | 402 } |
406 | 403 |
407 if (!child_ids.empty()) | 404 if (!child_ids.empty()) |
408 result += " child_ids=" + IntVectorToString(child_ids); | 405 result += " child_ids=" + IntVectorToString(child_ids); |
409 | 406 |
410 return result; | 407 return result; |
411 } | 408 } |
412 | 409 |
413 } // namespace ui | 410 } // namespace ui |
OLD | NEW |