#ifndef EXTENSIONS_COMMON_API_ICON_VARIANTS_H__
#define EXTENSIONS_COMMON_API_ICON_VARIANTS_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
#include <string_view>
#include "base/types/expected.h"
namespace extensions {
namespace api {
namespace icon_variants {
enum class ColorScheme { … };
const char* ToString(ColorScheme as_enum);
ColorScheme ParseColorScheme(std::string_view as_string);
std::u16string GetColorSchemeParseError(std::string_view as_string);
struct IconVariant { … };
struct ManifestKeys { … };
}
}
}
#endif