// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/base/index_rect.h" #include <algorithm> #include "base/strings/stringprintf.h" namespace cc { void IndexRect::ClampTo(const IndexRect& other) { … } bool IndexRect::Contains(int index_x, int index_y) const { … } std::string IndexRect::ToString() const { … } } // namespace cc