Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Unified Diff: content/common/view_messages.h

Issue 2370393002: Extracting placeholder information from Webkit to Blimp (Closed)
Patch Set: Extracting info through RHVW Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index ffa017ce8363800440233c2c8eabb85fe7007855..e9eaa6d5824eedef258c505632b321b90224f7a4 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -579,6 +579,10 @@ IPC_MESSAGE_ROUTED1(ViewMsg_ReleaseDisambiguationPopupBitmap,
// Fetches complete rendered content of a web page as plain text.
IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText)
+// Requests the renderer for information about currenly focused text input
+// element.
+IPC_MESSAGE_ROUTED1(ViewMsg_GetFormTextInputInfo, int)
+
#if defined(OS_ANDROID)
// Notifies the renderer whether hiding/showing the top controls is enabled
// and whether or not to animate to the proper state.
@@ -795,6 +799,13 @@ IPC_MESSAGE_ROUTED3(ViewHostMsg_RequestPpapiBrokerPermission,
base::FilePath /* plugin_path */)
#endif // defined(ENABLE_PLUGINS)
+// Reply message for ViewMsg_GetFormTextInputInfo. Sends info about the
+// currently focused form field.
+IPC_MESSAGE_ROUTED3(ViewHostMsg_SetFormTextInputInfo,
+ int,
+ std::string,
+ std::string)
+
// Send the tooltip text for the current mouse position to the browser.
IPC_MESSAGE_ROUTED2(ViewHostMsg_SetTooltipText,
base::string16 /* tooltip text string */,

Powered by Google App Engine
This is Rietveld 408576698