| Index: chrome/renderer/spellchecker/spellcheck_provider.h
|
| ===================================================================
|
| --- chrome/renderer/spellchecker/spellcheck_provider.h (revision 81105)
|
| +++ chrome/renderer/spellchecker/spellcheck_provider.h (working copy)
|
| @@ -12,6 +12,9 @@
|
| #include "content/renderer/render_view_observer.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebSpellCheckClient.h"
|
|
|
| +// TODO(jam): remove me once WEBSPELLCHECKCLIENT_HAS_SUGGESTIONS is rolled
|
| +#include "third_party/WebKit/Source/WebKit/chromium/public/WebVector.h"
|
| +
|
| class RenderView;
|
| class SpellCheck;
|
|
|
| @@ -54,6 +57,12 @@
|
|
|
| private:
|
| // WebKit::WebSpellCheckClient implementation.
|
| + virtual void spellCheck(
|
| + const WebKit::WebString& text,
|
| + int& offset,
|
| + int& length,
|
| + WebKit::WebVector<WebKit::WebString>* optional_suggestions);
|
| + // TODO(jam): remove me once WEBSPELLCHECKCLIENT_HAS_SUGGESTIONS is rolled
|
| virtual void spellCheck(const WebKit::WebString& text,
|
| int& offset,
|
| int& length);
|
|
|