Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: components/mus/vm/test_change_tracker.cc

Issue 1377493002: mus: move View Manager to components/mus/vm (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/mus/vm/test_change_tracker.h ('k') | components/mus/vm/test_server_view_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/mus/vm/test_change_tracker.h ('k') | components/mus/vm/test_server_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698