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/containers/hash_tables.h" | |
10 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
11 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
12 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
13 | 12 |
14 using base::DoubleToString; | 13 using base::DoubleToString; |
15 using base::IntToString; | 14 using base::IntToString; |
16 | 15 |
17 namespace ui { | 16 namespace ui { |
18 | 17 |
19 namespace { | 18 namespace { |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 } | 392 } |
394 } | 393 } |
395 | 394 |
396 if (!child_ids.empty()) | 395 if (!child_ids.empty()) |
397 result += " child_ids=" + IntVectorToString(child_ids); | 396 result += " child_ids=" + IntVectorToString(child_ids); |
398 | 397 |
399 return result; | 398 return result; |
400 } | 399 } |
401 | 400 |
402 } // namespace ui | 401 } // namespace ui |
OLD | NEW |