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

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

Issue 357003: Move the spellchecker to the renderer.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rename Created 11 years, 1 month 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 | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
Merged /branches/chrome_webkit_merge_branch/chrome/browser/spellcheck_worditerator.h:r69-2775
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698