Chromium Code Reviews| Index: content/common/view_messages.h |
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
| index 144430ad4ca7bd3ca4dd61a337b5d324ab872433..eb78f5872a25dcbf118e9b0c8718debbb69ffd47 100644 |
| --- a/content/common/view_messages.h |
| +++ b/content/common/view_messages.h |
| @@ -884,6 +884,8 @@ IPC_MESSAGE_ROUTED3(ViewMsg_WindowSnapshotCompleted, |
| gfx::Size /* size */, |
| std::vector<unsigned char> /* png */) |
| +IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText) |
|
Alexei Svitkine (slow)
2014/06/27 13:01:34
Add a comment.
|
| + |
| #if defined(OS_MACOSX) |
| IPC_ENUM_TRAITS_MAX_VALUE(blink::ScrollerStyle, blink::ScrollerStyleOverlay) |
| @@ -1671,6 +1673,9 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_PluginFocusChanged, |
| // Instructs the browser to start plugin IME. |
| IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| +// Receives content of a webpage as plain text. |
| +IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string); |
| + |
| #elif defined(OS_WIN) |
| // Request that the given font characters be loaded by the browser so it's |
| // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |