blob: d1fe1e501ff4ca2d9c45bfeae92921d5f070b916 [file] [log] [blame]
Siarhei Vishniakoub97dd692022-01-27 16:01:46 -08001// 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
Siarhei Vishniakoub97dd692022-01-27 16:01:46 -08009namespace gfx {
10
11// clang-format off
12void PrintTo(const PointF& point, ::std::ostream* os) {
13 *os << point.ToString();
14}
15// clang-format on
16} // namespace gfx