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..9c5bfa1157377124e172ee12690e66e781442ad6 100644 |
| --- a/chrome/browser/spellchecker_platform_engine.h |
| +++ b/chrome/browser/spellchecker_platform_engine.h |
| @@ -12,8 +12,11 @@ |
| #include <string> |
| #include <vector> |
| +#include "base/callback.h" |
| #include "base/string16.h" |
| +class BrowserMessageFilter; |
| + |
| namespace SpellCheckerPlatform { |
| // Get the languages supported by the platform spellchecker and store them in |
| @@ -81,6 +84,12 @@ void IgnoreWord(const string16& word); |
| // document can now be forgotten. |
| void CloseDocumentWithTag(int tag); |
| +void RequestTextCheck(int route_id, |
|
pink (ping after 24hrs)
2011/02/11 17:33:40
Comment all public api. Can |destination| be null?
gmorrita
2011/02/17 11:39:44
Done.
|
| + int identifier, |
| + int document_tag, |
| + const string16& text, |
| + BrowserMessageFilter* destination); |
| + |
| } // namespace SpellCheckerPlatform |
| #endif // CHROME_BROWSER_SPELLCHECKER_PLATFORM_ENGINE_H_ |