| 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/test_change_tracker.h" | 5 #include "components/mus/vm/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 "components/mus/public/cpp/util.h" | 9 #include "components/mus/public/cpp/util.h" |
| 10 #include "mojo/common/common_type_converters.h" | 10 #include "mojo/common/common_type_converters.h" |
| 11 | 11 |
| 12 using mojo::Array; | 12 using mojo::Array; |
| 13 using mojo::ViewDataPtr; | 13 using mojo::ViewDataPtr; |
| 14 using mojo::String; | 14 using mojo::String; |
| 15 | 15 |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 } | 319 } |
| 320 | 320 |
| 321 std::string TestView::ToString2() const { | 321 std::string TestView::ToString2() const { |
| 322 return base::StringPrintf( | 322 return base::StringPrintf( |
| 323 "view=%s parent=%s visible=%s drawn=%s", ViewIdToString(view_id).c_str(), | 323 "view=%s parent=%s visible=%s drawn=%s", ViewIdToString(view_id).c_str(), |
| 324 ViewIdToString(parent_id).c_str(), visible ? "true" : "false", | 324 ViewIdToString(parent_id).c_str(), visible ? "true" : "false", |
| 325 drawn ? "true" : "false"); | 325 drawn ? "true" : "false"); |
| 326 } | 326 } |
| 327 | 327 |
| 328 } // namespace mus | 328 } // namespace mus |
| OLD | NEW |