#ifndef CHROME_BROWSER_WEB_APPLICATIONS_ISOLATED_WEB_APPS_ISOLATED_WEB_APP_VERSION_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_ISOLATED_WEB_APPS_ISOLATED_WEB_APP_VERSION_H_
#include <string_view>
#include <vector>
#include "base/types/expected.h"
namespace web_app {
enum class IwaVersionParseError { … };
base::expected<std::vector<uint32_t>, IwaVersionParseError>
ParseIwaVersionIntoComponents(std::string_view version_string);
std::string IwaVersionParseErrorToString(IwaVersionParseError error);
}
#endif