#ifndef EXTENSIONS_COMMON_API_SCRIPTS_INTERNAL_H__
#define EXTENSIONS_COMMON_API_SCRIPTS_INTERNAL_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
#include <string_view>
#include "extensions/common/api/extension_types.h"
namespace extensions {
namespace api {
namespace scripts_internal {
enum class Source { … };
const char* ToString(Source as_enum);
Source ParseSource(std::string_view as_string);
std::u16string GetSourceParseError(std::string_view as_string);
struct ScriptSource { … };
struct SerializedUserScript { … };
}
}
}
#endif