// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/common/icons/extension_icon_variants_diagnostics.h" #include <optional> namespace extensions::diagnostics::icon_variants { // List of diagnostics. // TODO(crbug.com/344639840): Add a cross-browser code in each item for the UI. constexpr Diagnostic diagnostics[] = …; // TODO(crbug.com/343748805): Use e.g. flat_map when there are many diagnostics. Diagnostic GetDiagnostic(Feature feature, Id id) { … } } // namespace extensions::diagnostics::icon_variants