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

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

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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
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/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
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
OLDNEW
« no previous file with comments | « components/mus/ws/test_change_tracker.h ('k') | components/mus/ws/test_server_window_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698