chromium/ui/gfx/range/range_f.cc

// Copyright 2015 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/range/range_f.h"

#include <stddef.h>

#include <algorithm>
#include <cmath>
#include <ostream>

#include "base/format_macros.h"
#include "base/strings/stringprintf.h"

namespace gfx {

RangeF RangeF::Intersect(const Range& range) const {}

std::string RangeF::ToString() const {}

std::ostream& operator<<(std::ostream& os, const RangeF& range) {}

}  // namespace gfx