xref: /aosp_15_r20/external/libpalmrejection/chrome_to_android_compatibility_test_support.cc (revision 385f2b9352baca56113422de7d5392250974f582)
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)12 void PrintTo(const PointF& point, ::std::ostream* os) {
13   *os << point.ToString();
14 }
15 // clang-format on
16 }  // namespace gfx
17