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

Side by Side Diff: services/view_manager/test_change_tracker.cc

Issue 790623003: Restructure public side of view_manager service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: BUILD.gn file reorderings Created 6 years 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
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 "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
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
OLDNEW
« no previous file with comments | « services/view_manager/test_change_tracker.h ('k') | services/view_manager/view_manager_service_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698