| 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 "components/mus/ws/test_change_tracker.h" | 5 #include "components/mus/ws/test_change_tracker.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 8 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 9 #include "components/mus/common/util.h" | 11 #include "components/mus/common/util.h" |
| 10 #include "mojo/common/common_type_converters.h" | 12 #include "mojo/common/common_type_converters.h" |
| 11 | 13 |
| 12 using mojo::Array; | 14 using mojo::Array; |
| 13 using mojo::String; | 15 using mojo::String; |
| 14 | 16 |
| 15 namespace mus { | 17 namespace mus { |
| 16 | 18 |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 std::string TestWindow::ToString2() const { | 370 std::string TestWindow::ToString2() const { |
| 369 return base::StringPrintf( | 371 return base::StringPrintf( |
| 370 "window=%s parent=%s visible=%s drawn=%s", | 372 "window=%s parent=%s visible=%s drawn=%s", |
| 371 WindowIdToString(window_id).c_str(), WindowIdToString(parent_id).c_str(), | 373 WindowIdToString(window_id).c_str(), WindowIdToString(parent_id).c_str(), |
| 372 visible ? "true" : "false", drawn ? "true" : "false"); | 374 visible ? "true" : "false", drawn ? "true" : "false"); |
| 373 } | 375 } |
| 374 | 376 |
| 375 } // namespace ws | 377 } // namespace ws |
| 376 | 378 |
| 377 } // namespace mus | 379 } // namespace mus |
| OLD | NEW |