Chromium Code Reviews| Index: chrome/renderer/spellchecker/spellcheck_provider.h |
| diff --git a/chrome/renderer/spellchecker/spellcheck_provider.h b/chrome/renderer/spellchecker/spellcheck_provider.h |
| index 4fd79f06d605e1908425b858b3676ab9ba1b0773..0231c33b4aa1bd0f08b942a13448e23620e65acb 100644 |
| --- a/chrome/renderer/spellchecker/spellcheck_provider.h |
| +++ b/chrome/renderer/spellchecker/spellcheck_provider.h |
| @@ -13,6 +13,7 @@ |
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebSpellCheckClient.h" |
| class RenderView; |
| +class SpellCheckResult; |
|
Hironori Bono
2012/02/16 04:22:45
nit: class -> struct.
|
| namespace chrome { |
| class ChromeContentRendererClient; |
| @@ -81,13 +82,13 @@ class SpellCheckProvider : public content::RenderViewObserver, |
| void OnRespondSpellingService( |
| int identifier, |
| int tag, |
| - const std::vector<WebKit::WebTextCheckingResult>& results); |
| + const std::vector<SpellCheckResult>& results); |
| #endif |
| #if defined(OS_MACOSX) |
| void OnRespondTextCheck( |
| int identifier, |
| int tag, |
| - const std::vector<WebKit::WebTextCheckingResult>& results); |
| + const std::vector<SpellCheckResult>& results); |
| #endif |
| void OnToggleSpellCheck(); |
| void OnToggleSpellPanel(bool is_currently_visible); |