#include "components/url_formatter/spoof_checks/common_words/common_words_util.h"
#include <cstdint>
#include <string_view>
#include "base/containers/span.h"
#include "net/base/lookup_string_in_fixed_set.h"
namespace url_formatter {
namespace common_words {
namespace {
#include "components/url_formatter/spoof_checks/common_words/common_words-inc.cc"
base::span<const uint8_t> g_dafsa_params = …;
}
bool IsCommonWord(std::string_view word) { … }
void SetCommonWordDAFSAForTesting(base::span<const uint8_t> dafsa) { … }
void ResetCommonWordDAFSAForTesting() { … }
}
}