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

Unified Diff: mojo/services/geometry/cpp/formatting.cc

Issue 1537633005: Extend the geometry APIs. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-10
Patch Set: rebase Created 4 years, 11 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/geometry/cpp/formatting.h ('k') | mojo/services/geometry/cpp/geometry_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/geometry/cpp/formatting.cc
diff --git a/mojo/services/geometry/cpp/formatting.cc b/mojo/services/geometry/cpp/formatting.cc
new file mode 100644
index 0000000000000000000000000000000000000000..76162d7a592c7c07936210e497ec1a689675eee7
--- /dev/null
+++ b/mojo/services/geometry/cpp/formatting.cc
@@ -0,0 +1,58 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/services/geometry/cpp/formatting.h"
+
+#include <ostream>
+
+namespace mojo {
+
+std::ostream& operator<<(std::ostream& os, const mojo::Point& value) {
+ return os << "{x=" << value.x << ", y=" << value.y << "}";
+}
+
+std::ostream& operator<<(std::ostream& os, const mojo::Size& value) {
+ return os << "{width=" << value.width << ", height=" << value.height << "}";
+}
+
+std::ostream& operator<<(std::ostream& os, const mojo::Rect& value) {
+ return os << "{x=" << value.x << ", y=" << value.y
+ << ", width=" << value.width << ", height=" << value.height << "}";
+}
+
+std::ostream& operator<<(std::ostream& os, const mojo::RRect& value) {
+ return os << "{x=" << value.x << ", y=" << value.y
+ << ", width=" << value.width << ", height=" << value.height
+ << ", top_left_radius_x=" << value.top_left_radius_x
+ << ", top_left_radius_y=" << value.top_left_radius_y
+ << ", top_right_radius_x=" << value.top_right_radius_x
+ << ", top_right_radius_y=" << value.top_right_radius_y
+ << ", bottom_left_radius_x=" << value.bottom_left_radius_x
+ << ", bottom_left_radius_y=" << value.bottom_left_radius_y
+ << ", bottom_right_radius_x=" << value.bottom_right_radius_x
+ << ", bottom_right_radius_y=" << value.bottom_right_radius_y << "}";
+}
+
+std::ostream& operator<<(std::ostream& os, const mojo::Transform& value) {
+ if (value.matrix) {
+ os << "[";
+ for (size_t i = 0; i < 4; i++) {
+ if (i != 0)
+ os << ", ";
+ os << "[";
+ for (size_t j = 0; j < 4; j++) {
+ if (j != 0)
+ os << ", ";
+ os << value.matrix[i * 4 + j];
+ }
+ os << "]";
+ }
+ os << "]";
+ } else {
+ os << "null";
+ }
+ return os;
+}
+
+} // namespace mojo
« no previous file with comments | « mojo/services/geometry/cpp/formatting.h ('k') | mojo/services/geometry/cpp/geometry_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698