| 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 CHROME_COMMON_SPELLCHECK_RESULT_H_ | 5 #ifndef CHROME_COMMON_SPELLCHECK_RESULT_H_ |
| 6 #define CHROME_COMMON_SPELLCHECK_RESULT_H_ | 6 #define CHROME_COMMON_SPELLCHECK_RESULT_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 | 9 |
| 10 // This class mirrors blink::WebTextCheckingResult which holds a | 10 // This class mirrors blink::WebTextCheckingResult which holds a |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 // No underline for words that spellcheck needs to track. For example, a | 22 // No underline for words that spellcheck needs to track. For example, a |
| 23 // word in the custom spellcheck dictionary. | 23 // word in the custom spellcheck dictionary. |
| 24 INVISIBLE = 1 << 3, | 24 INVISIBLE = 1 << 3, |
| 25 }; | 25 }; |
| 26 | 26 |
| 27 explicit SpellCheckResult( | 27 explicit SpellCheckResult( |
| 28 Decoration d = SPELLING, | 28 Decoration d = SPELLING, |
| 29 int loc = 0, | 29 int loc = 0, |
| 30 int len = 0, | 30 int len = 0, |
| 31 const string16& rep = string16(), | 31 const base::string16& rep = base::string16(), |
| 32 uint32 h = 0) | 32 uint32 h = 0) |
| 33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) { | 33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) { |
| 34 } | 34 } |
| 35 | 35 |
| 36 Decoration decoration; | 36 Decoration decoration; |
| 37 int location; | 37 int location; |
| 38 int length; | 38 int length; |
| 39 string16 replacement; | 39 base::string16 replacement; |
| 40 uint32 hash; | 40 uint32 hash; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 #endif // CHROME_COMMON_SPELLCHECK_RESULT_H_ | 43 #endif // CHROME_COMMON_SPELLCHECK_RESULT_H_ |
| OLD | NEW |