Chromium Code Reviews| Index: chrome/browser/spellchecker_platform_engine.h |
| diff --git a/chrome/browser/spellchecker_platform_engine.h b/chrome/browser/spellchecker_platform_engine.h |
| index edc8f3108a59bde8bb01e7bab5e927fb2d89cda1..5f4e63946beb4b0a119e84c30c8af324bac265b2 100644 |
| --- a/chrome/browser/spellchecker_platform_engine.h |
| +++ b/chrome/browser/spellchecker_platform_engine.h |
| @@ -12,7 +12,9 @@ |
| #include <string> |
| #include <vector> |
| +#include "base/callback.h" |
| #include "base/string16.h" |
| +#include "chrome/common/text_checking_result.h" |
| namespace SpellCheckerPlatform { |
| @@ -81,6 +83,9 @@ void IgnoreWord(const string16& word); |
| // document can now be forgotten. |
| void CloseDocumentWithTag(int tag); |
| +void RequestTextCheck(const string16& text, int tag, |
| + Callback1<const TextCheckingResultList&>::Type* callback); |
|
Hironori Bono
2011/02/09 05:43:51
nit: align all parameters if possible.
gmorrita
2011/02/10 02:15:21
Done.
|
| + |
| } // namespace SpellCheckerPlatform |
| #endif // CHROME_BROWSER_SPELLCHECKER_PLATFORM_ENGINE_H_ |