// 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. #ifndef COMPONENTS_SPELLCHECK_RENDERER_HUNSPELL_ENGINE_H_ #define COMPONENTS_SPELLCHECK_RENDERER_HUNSPELL_ENGINE_H_ #include <memory> #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "base/strings/utf_string_conversions.h" #include "components/spellcheck/common/spellcheck_common.h" #include "components/spellcheck/renderer/spelling_engine.h" class Hunspell; namespace base { class MemoryMappedFile; } class HunspellEngine : public SpellingEngine { … }; #endif // COMPONENTS_SPELLCHECK_RENDERER_HUNSPELL_ENGINE_H_