// 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. #ifndef COMPONENTS_VIZ_COMMON_QUADS_SELECTION_H_ #define COMPONENTS_VIZ_COMMON_QUADS_SELECTION_H_ #include "base/strings/stringprintf.h" namespace viz { template <typename BoundType> struct Selection { … }; template <typename BoundType> inline bool operator==(const Selection<BoundType>& lhs, const Selection<BoundType>& rhs) { … } template <typename BoundType> inline bool operator!=(const Selection<BoundType>& lhs, const Selection<BoundType>& rhs) { … } } // namespace viz #endif // COMPONENTS_VIZ_COMMON_QUADS_SELECTION_H_