// 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_COMMON_SPELLCHECK_RESULT_H_ #define COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ #include <stdint.h> #include <string> #include <vector> // This class mirrors blink::WebTextCheckingResult which holds a // misspelled range inside the checked text. It also contains a // possible replacement of the misspelling if it is available. struct SpellCheckResult { … }; #endif // COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_