Chromium Code Reviews| Index: chrome/common/render_messages_internal.h |
| diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h |
| index dada88c3bd61d644cf347a9a91d446c57a98d202..886f7987adeed8ea9e39263f4da37a60befe5101 100644 |
| --- a/chrome/common/render_messages_internal.h |
| +++ b/chrome/common/render_messages_internal.h |
| @@ -274,6 +274,10 @@ IPC_MESSAGE_ROUTED0(ViewMsg_ToggleSpellCheck) |
| IPC_MESSAGE_ROUTED0(ViewMsg_Delete) |
| IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) |
| IPC_MESSAGE_ROUTED1(ViewMsg_ToggleSpellPanel, bool) |
| +IPC_MESSAGE_ROUTED3(ViewMsg_SpellChecker_RespondTextCheck, |
| + int /* request identifier given by WebKit */, |
| + int /* document tag */, |
| + std::vector<WebKit::WebTextCheckingResult>) |
| // This message tells the renderer to advance to the next misspelling. It is |
| // sent when the user clicks the "Find Next" button on the spelling panel. |
| @@ -2340,6 +2344,12 @@ IPC_SYNC_MESSAGE_CONTROL1_1( |
| string16 /* word */, |
| std::vector<string16> /* suggestions */) |
| +IPC_MESSAGE_CONTROL4(ViewHostMsg_SpellChecker_PlatformRequestTextCheck, |
| + int /* route_id for response */, |
|
Hironori Bono
2011/02/10 11:02:56
nit: is this parameter aligned to the above one?
gmorrita
2011/02/17 11:39:44
Had gaps. Fixed.
|
| + int /* request identifier given by WebKit */, |
| + int /* document tag */, |
| + string16 /* sentence */) |
| + |
| //--------------------------------------------------------------------------- |
| // Geolocation services messages |