| 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..95981841f3cc36467c39e8e3ad9c9eb41ed71dbb 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;
|
| +struct SpellCheckResult;
|
|
|
| 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);
|
|
|