OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SPELLCHECK_PROVIDER_H_ | 5 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_H_ |
6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_H_ | 6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 // True if the browser is showing the spelling panel for us. | 128 // True if the browser is showing the spelling panel for us. |
129 bool spelling_panel_visible_; | 129 bool spelling_panel_visible_; |
130 | 130 |
131 // Weak pointer to shared (per RenderView) spellcheck data. | 131 // Weak pointer to shared (per RenderView) spellcheck data. |
132 SpellCheck* spellcheck_; | 132 SpellCheck* spellcheck_; |
133 | 133 |
134 DISALLOW_COPY_AND_ASSIGN(SpellCheckProvider); | 134 DISALLOW_COPY_AND_ASSIGN(SpellCheckProvider); |
135 }; | 135 }; |
136 | 136 |
137 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_H_ | 137 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_H_ |
OLD | NEW |