| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ | 5 #ifndef COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ |
| 6 #define COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ | 6 #define COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <vector> | |
| 10 | 9 |
| 11 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 12 | 11 |
| 13 // This class mirrors blink::WebTextCheckingResult which holds a | 12 // This class mirrors blink::WebTextCheckingResult which holds a |
| 14 // misspelled range inside the checked text. It also contains a | 13 // misspelled range inside the checked text. It also contains a |
| 15 // possible replacement of the misspelling if it is available. | 14 // possible replacement of the misspelling if it is available. |
| 16 struct SpellCheckResult { | 15 struct SpellCheckResult { |
| 17 enum Decoration { | 16 enum Decoration { |
| 18 // Red underline for misspelled words. | 17 // Red underline for misspelled words. |
| 19 SPELLING = 1 << 1, | 18 SPELLING = 1 << 1, |
| 20 | 19 |
| 21 // Gray underline for correctly spelled words that are incorrectly used in | 20 // Gray underline for correctly spelled words that are incorrectly used in |
| 22 // their context. | 21 // their context. |
| 23 GRAMMAR = 1 << 2, | 22 GRAMMAR = 1 << 2, |
| 24 }; | 23 }; |
| 25 | 24 |
| 26 // Default values are so we have a default constructor for IPC::ReadParam() | 25 explicit SpellCheckResult(Decoration d = SPELLING, |
| 27 explicit SpellCheckResult( | 26 int loc = 0, |
| 28 Decoration d = SPELLING, | 27 int len = 0, |
| 29 int loc = 0, | 28 const base::string16& rep = base::string16()) |
| 30 int len = 0, | 29 : decoration(d), location(loc), length(len), replacement(rep) {} |
| 31 const std::vector<base::string16>& rep = std::vector<base::string16>()); | |
| 32 | |
| 33 explicit SpellCheckResult(Decoration d, | |
| 34 int loc, | |
| 35 int len, | |
| 36 const base::string16& rep); | |
| 37 | |
| 38 ~SpellCheckResult(); | |
| 39 SpellCheckResult(const SpellCheckResult&); | |
| 40 | 30 |
| 41 Decoration decoration; | 31 Decoration decoration; |
| 42 int location; | 32 int location; |
| 43 int length; | 33 int length; |
| 44 std::vector<base::string16> replacements; | 34 base::string16 replacement; |
| 45 }; | 35 }; |
| 46 | 36 |
| 47 #endif // COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ | 37 #endif // COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ |
| OLD | NEW |