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

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

Issue 384103: This patch is the rest of the lint cleanup minus the other open issue. (Closed)
Patch Set: 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
OLDNEW
1 // Copyright (c) 2009 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_RENDERER_SPELLCHECKER_SPELLCHECKER_H_ 5 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_
6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECKER_H_ 6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "app/l10n_util.h" 12 #include "app/l10n_util.h"
13 #include "base/file_descriptor_posix.h" 13 #include "base/file_descriptor_posix.h"
14 #include "base/string16.h" 14 #include "base/string16.h"
15 #include "base/time.h" 15 #include "base/time.h"
16 #include "chrome/renderer/spellchecker/spellcheck_worditerator.h" 16 #include "chrome/renderer/spellchecker/spellcheck_worditerator.h"
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 // This flags whether we have ever been initialized, or have asked the browser 118 // This flags whether we have ever been initialized, or have asked the browser
119 // for a dictionary. The value indicates whether we should request a 119 // for a dictionary. The value indicates whether we should request a
120 // dictionary from the browser when the render view asks us to check the 120 // dictionary from the browser when the render view asks us to check the
121 // spelling of a word. 121 // spelling of a word.
122 bool initialized_; 122 bool initialized_;
123 123
124 DISALLOW_COPY_AND_ASSIGN(SpellCheck); 124 DISALLOW_COPY_AND_ASSIGN(SpellCheck);
125 }; 125 };
126 126
127 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECKER_H_ 127 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_webstoragenamespace_impl.h ('k') | chrome/renderer/user_script_slave.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698