| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_BROWSER_SPELLCHECK_WORDITERATOR_H_ | 5 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_ |
| 6 #define CHROME_BROWSER_SPELLCHECK_WORDITERATOR_H_ | 6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 | 13 |
| 14 #include "unicode/uscript.h" | 14 #include "unicode/uscript.h" |
| 15 | 15 |
| 16 // A class which handles character attributes dependent on a spellchecker and | 16 // A class which handles character attributes dependent on a spellchecker and |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 // The flag to control whether or not this object should extract possible | 173 // The flag to control whether or not this object should extract possible |
| 174 // contractions. | 174 // contractions. |
| 175 bool allow_contraction_; | 175 bool allow_contraction_; |
| 176 | 176 |
| 177 // The character attributes used for filtering out non-word characters. | 177 // The character attributes used for filtering out non-word characters. |
| 178 const SpellcheckCharAttribute* attribute_; | 178 const SpellcheckCharAttribute* attribute_; |
| 179 | 179 |
| 180 DISALLOW_COPY_AND_ASSIGN(SpellcheckWordIterator); | 180 DISALLOW_COPY_AND_ASSIGN(SpellcheckWordIterator); |
| 181 }; | 181 }; |
| 182 | 182 |
| 183 #endif // CHROME_BROWSER_SPELLCHECK_WORDITERATOR_H_ | 183 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_ |
| OLD | NEW |