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..11c1d89161bf12510ba4924aeecf606c4f1fbede 100644 |
| --- a/content/common/view_messages.h |
| +++ b/content/common/view_messages.h |
| @@ -884,6 +884,9 @@ IPC_MESSAGE_ROUTED3(ViewMsg_WindowSnapshotCompleted, |
| gfx::Size /* size */, |
| std::vector<unsigned char> /* png */) |
| +// Notifies render view to retrieve rendered text from WebView. |
|
jeremy
2014/06/29 11:38:55
// Issue an async request for the full textual con
|
| +IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText) |
| + |
| #if defined(OS_MACOSX) |
| IPC_ENUM_TRAITS_MAX_VALUE(blink::ScrollerStyle, blink::ScrollerStyleOverlay) |
| @@ -1671,6 +1674,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. |
|
jeremy
2014/06/29 11:38:55
nit: "web page"
|
| +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 |