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

Unified Diff: content/common/view_messages.h

Issue 2571583008: Support tracking focused element for OOPIFs. (Closed)
Patch Set: Do not call ScrollFocusedEditableNodeIntoRect for OOPIFs. Created 4 years 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 b9d444dbfe04c8058556966598d374301c1dfb1a..9c7c90abb22c2dd86abcd750000c19291588bd9a 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -519,9 +519,6 @@ IPC_MESSAGE_ROUTED1(ViewMsg_DisableAutoResize,
IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection,
blink::WebTextDirection /* direction */)
-// Tells the renderer to clear the focused element (if any).
-IPC_MESSAGE_ROUTED0(ViewMsg_ClearFocusedElement)
-
// Make the RenderView background transparent or opaque.
IPC_MESSAGE_ROUTED1(ViewMsg_SetBackgroundOpaque, bool /* opaque */)
@@ -695,14 +692,6 @@ IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect,
IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus)
-// Message sent from renderer to the browser when focus changes inside the
-// webpage. The first parameter says whether the newly focused element needs
-// keyboard input (true for textfields, text areas and content editable divs).
-// The second parameter is the node bounds relative to RenderWidgetHostView.
-IPC_MESSAGE_ROUTED2(ViewHostMsg_FocusedNodeChanged,
- bool /* is_editable_node */,
- gfx::Rect /* node_bounds */)
-
IPC_MESSAGE_ROUTED1(ViewHostMsg_SetCursor, content::WebCursor)
// Get the list of proxies to use for |url|, as a semicolon delimited list

Powered by Google App Engine
This is Rietveld 408576698