// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GFX_GEOMETRY_INSETS_OUTSETS_F_BASE_H_ #define UI_GFX_GEOMETRY_INSETS_OUTSETS_F_BASE_H_ #include <string> #include "base/strings/stringprintf.h" namespace gfx { // This is the base template class of InsetsF and OutsetsF. template <typename T> class InsetsOutsetsFBase { … }; } // namespace gfx #endif // UI_GFX_GEOMETRY_INSETS_OUTSETS_F_BASE_H_