// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/strings/stringprintf.h" #include "cc/input/layer_selection_bound.h" namespace cc { LayerSelectionBound::LayerSelectionBound() : … { … } LayerSelectionBound::~LayerSelectionBound() = default; bool LayerSelectionBound::operator==(const LayerSelectionBound& other) const { … } bool LayerSelectionBound::operator!=(const LayerSelectionBound& other) const { … } std::string LayerSelectionBound::ToString() const { … } } // namespace cc