chromium/content/web_test/renderer/web_test_spell_checker.h

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

#ifndef CONTENT_WEB_TEST_RENDERER_WEB_TEST_SPELL_CHECKER_H_
#define CONTENT_WEB_TEST_RENDERER_WEB_TEST_SPELL_CHECKER_H_

#include <vector>

#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/platform/web_vector.h"
#include "third_party/blink/public/web/web_text_checking_result.h"

namespace content {

// A spell-checker used for web tests. This class only implements the minimal
// functionalities required by web tests, i.e. this class just compares the
// given string with known misspelled words in web tests and mark them as
// misspelled. Even though this is sufficient for web tests, this class is not
// suitable for any other usages.
class WebTestSpellChecker {};

}  // namespace content

#endif  // CONTENT_WEB_TEST_RENDERER_WEB_TEST_SPELL_CHECKER_H_