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 #include "services/view_manager/test_change_tracker.h" | 5 #include "services/view_manager/test_change_tracker.h" |
6 | 6 |
7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
9 #include "mojo/common/common_type_converters.h" | 9 #include "mojo/common/common_type_converters.h" |
10 #include "mojo/services/public/cpp/view_manager/util.h" | 10 #include "mojo/services/view_manager/public/cpp/util.h" |
11 | 11 |
12 namespace mojo { | 12 namespace mojo { |
13 namespace service { | 13 namespace service { |
14 | 14 |
15 std::string ViewIdToString(Id id) { | 15 std::string ViewIdToString(Id id) { |
16 return (id == 0) ? "null" : | 16 return (id == 0) ? "null" : |
17 base::StringPrintf("%d,%d", HiWord(id), LoWord(id)); | 17 base::StringPrintf("%d,%d", HiWord(id), LoWord(id)); |
18 } | 18 } |
19 | 19 |
20 namespace { | 20 namespace { |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 std::string TestView::ToString2() const { | 289 std::string TestView::ToString2() const { |
290 return base::StringPrintf("view=%s parent=%s visible=%s drawn=%s", | 290 return base::StringPrintf("view=%s parent=%s visible=%s drawn=%s", |
291 ViewIdToString(view_id).c_str(), | 291 ViewIdToString(view_id).c_str(), |
292 ViewIdToString(parent_id).c_str(), | 292 ViewIdToString(parent_id).c_str(), |
293 visible ? "true" : "false", | 293 visible ? "true" : "false", |
294 drawn ? "true" : "false"); | 294 drawn ? "true" : "false"); |
295 } | 295 } |
296 | 296 |
297 } // namespace service | 297 } // namespace service |
298 } // namespace mojo | 298 } // namespace mojo |
OLD | NEW |