#include "content/renderer/accessibility/annotations/ax_image_stopwords.h"
#include <string>
#include <string_view>
#include <vector>
#include "base/containers/contains.h"
#include "base/containers/flat_set.h"
#include "base/i18n/case_conversion.h"
#include "base/i18n/char_iterator.h"
#include "base/no_destructor.h"
#include "base/strings/string_split.h"
#include "base/strings/utf_string_conversions.h"
#include "third_party/icu/source/common/unicode/uchar.h"
namespace content {
namespace {
const char kImageStopwordsUtf8[] = …;
}
AXImageStopwords& AXImageStopwords::GetInstance() { … }
AXImageStopwords::AXImageStopwords() { … }
AXImageStopwords::~AXImageStopwords() = default;
bool AXImageStopwords::IsImageStopword(const char* word_utf8) const { … }
}