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

Unified Diff: mojo/services/ui/views/cpp/formatting.cc

Issue 1873573003: Mozart: Ensure time always runs forward. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-3
Patch Set: fix build error on Android Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/gfx/composition/cpp/formatting.cc ('k') | services/gfx/compositor/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/ui/views/cpp/formatting.cc
diff --git a/mojo/services/ui/views/cpp/formatting.cc b/mojo/services/ui/views/cpp/formatting.cc
index 7d94961bd7458a9f275d03c8024bd0c8dcc85a58..8f9f420cce0846e7e6b0ad389fb69e171e686bf6 100644
--- a/mojo/services/ui/views/cpp/formatting.cc
+++ b/mojo/services/ui/views/cpp/formatting.cc
@@ -10,12 +10,12 @@ namespace mojo {
namespace ui {
std::ostream& operator<<(std::ostream& os, const mojo::ui::ViewToken& value) {
- return os << "{value=" << value.value << "}";
+ return os << "<V" << value.value << ">";
}
std::ostream& operator<<(std::ostream& os,
const mojo::ui::ViewTreeToken& value) {
- return os << "{value=" << value.value << "}";
+ return os << "<T" << value.value << ">";
}
std::ostream& operator<<(std::ostream& os, const mojo::ui::ViewInfo& value) {
« no previous file with comments | « mojo/services/gfx/composition/cpp/formatting.cc ('k') | services/gfx/compositor/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698