// Copyright 2020 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_BASE_THEMED_VECTOR_ICON_H_ #define UI_BASE_THEMED_VECTOR_ICON_H_ #include "base/component_export.h" #include "base/memory/raw_ptr.h" #include "third_party/abseil-cpp/absl/types/variant.h" #include "third_party/skia/include/core/SkColor.h" #include "ui/base/models/image_model.h" #include "ui/color/color_id.h" namespace gfx { class ImageSkia; struct VectorIcon; } // namespace gfx namespace ui { class ColorProvider; class COMPONENT_EXPORT(UI_BASE) ThemedVectorIcon { … }; } // namespace ui #endif // UI_BASE_THEMED_VECTOR_ICON_H_