#ifndef CHROME_COMMON_EXTENSIONS_API_RESOURCES_PRIVATE_H__
#define CHROME_COMMON_EXTENSIONS_API_RESOURCES_PRIVATE_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 resources_private {
enum class Component { … };
const char* ToString(Component as_enum);
Component ParseComponent(std::string_view as_string);
std::u16string GetComponentParseError(std::string_view as_string);
namespace GetStrings {
struct Params { … };
namespace Results {
struct Result { … };
base::Value::List Create(const Result& result);
}
}
}
}
}
#endif