Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: chrome/renderer/spellchecker/spellcheck_worditerator.h

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.h ('k') | chrome/renderer/user_script_slave.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // Defines an iterator class that enumerates words supported by our spellchecker 5 // Defines an iterator class that enumerates words supported by our spellchecker
6 // from multi-language text. This class is used for filtering out characters 6 // from multi-language text. This class is used for filtering out characters
7 // not supported by our spellchecker. 7 // not supported by our spellchecker.
8 8
9 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_ 9 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_
10 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_ 10 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_
11 #pragma once 11 #pragma once
12 12
13 #include <map>
14 #include <string> 13 #include <string>
15 14
16 #include "base/basictypes.h" 15 #include "base/basictypes.h"
17 #include "base/string16.h" 16 #include "base/string16.h"
18 #include "third_party/icu/public/common/unicode/ubrk.h" 17 #include "third_party/icu/public/common/unicode/ubrk.h"
19 #include "third_party/icu/public/common/unicode/uscript.h" 18 #include "third_party/icu/public/common/unicode/uscript.h"
20 19
21 // A class which encapsulates language-specific operations used by 20 // A class which encapsulates language-specific operations used by
22 // SpellcheckWordIterator. When we set the spellchecker language, this class 21 // SpellcheckWordIterator. When we set the spellchecker language, this class
23 // creates rule sets that filter out the characters not supported by the 22 // creates rule sets that filter out the characters not supported by the
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 const SpellcheckCharAttribute* attribute_; 161 const SpellcheckCharAttribute* attribute_;
163 162
164 // The ICU break iterator. 163 // The ICU break iterator.
165 UBreakIterator* iterator_; 164 UBreakIterator* iterator_;
166 165
167 DISALLOW_COPY_AND_ASSIGN(SpellcheckWordIterator); 166 DISALLOW_COPY_AND_ASSIGN(SpellcheckWordIterator);
168 }; 167 };
169 168
170 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_ 169 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_WORDITERATOR_H_
171 170
OLDNEW
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.h ('k') | chrome/renderer/user_script_slave.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698