Chromium Code Reviews| Index: mojo/services/geometry/cpp/logging.cc |
| diff --git a/mojo/services/geometry/cpp/logging.cc b/mojo/services/geometry/cpp/logging.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c69435e8716dce766e9fc7cdcc0221ac06f28df3 |
| --- /dev/null |
| +++ b/mojo/services/geometry/cpp/logging.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 <ostream> |
| + |
| +#include "mojo/services/geometry/cpp/logging.h" |
|
viettrungluu
2015/12/17 23:05:29
nit: The implementation file should include its he
jeffbrown
2015/12/18 01:41:22
Done.
|
| + |
| +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 |