#ifndef EXTENSIONS_COMMON_API_REQUIREMENTS_H__
#define EXTENSIONS_COMMON_API_REQUIREMENTS_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
#include <string_view>
namespace extensions {
namespace api {
namespace requirements {
enum class _3DFeature { … };
const char* ToString(_3DFeature as_enum);
_3DFeature Parse_3DFeature(std::string_view as_string);
std::u16string Get_3DFeatureParseError(std::string_view as_string);
struct ManifestKeys { … };
}
}
}
#endif