| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |