chromium/components/spellcheck/renderer/custom_dictionary_engine.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}