1 // Copyright 2022 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "ui/gfx/geometry/point_f.h" 6 7 #include "base/time/time.h" 8 9 namespace gfx { 10 11 // clang-format off PrintTo(const PointF & point,::std::ostream * os)12void PrintTo(const PointF& point, ::std::ostream* os) { 13 *os << point.ToString(); 14 } 15 // clang-format on 16 } // namespace gfx 17