#include "components/spellcheck/renderer/custom_dictionary_engine.h"
#include <stddef.h>
#include "base/strings/utf_string_conversions.h"
CustomDictionaryEngine::CustomDictionaryEngine() { … }
CustomDictionaryEngine::~CustomDictionaryEngine() { … }
void CustomDictionaryEngine::Init(const std::set<std::string>& custom_words) { … }
void CustomDictionaryEngine::OnCustomDictionaryChanged(
const std::set<std::string>& words_added,
const std::set<std::string>& words_removed) { … }
bool CustomDictionaryEngine::SpellCheckWord(const std::u16string& text,
size_t misspelling_start,
size_t misspelling_len) { … }