// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gfx/geometry/point_conversions.h" #include "base/numerics/safe_conversions.h" namespace gfx { Point ToFlooredPoint(const PointF& point) { … } Point ToCeiledPoint(const PointF& point) { … } Point ToRoundedPoint(const PointF& point) { … } } // namespace gfx