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

Unified Diff: content/common/frame_messages.h

Issue 1423053002: Make document.activeElement work with OOPIF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@focus-preserve-page-focus-on-subframe-navigations
Patch Set: Remove some plumbing that should instead be introduced in the window.focus() CL. Created 5 years, 1 month 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/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index f9f231da9efddc289ca56be33aa2239004009d61..4b5c8139bf41f59ddc02a8c95a4f32c80b1bf906 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -654,8 +654,9 @@ IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */)
// new origin.
IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateOrigin, url::Origin /* origin */)
-// Notifies this frame that it lost focus to a frame in another process.
-IPC_MESSAGE_ROUTED0(FrameMsg_ClearFocus)
+// Notifies this frame or proxy that it is now focused. This is used to
+// support cross-process focused frame changes.
+IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame);
alexmos 2015/11/04 21:53:59 Currently, this is only called on proxies, but in
Charlie Reis 2015/11/04 22:23:42 Acknowledged.
// Send to the RenderFrame to set text tracks state and style settings.
// Sent for top-level frames.

Powered by Google App Engine
This is Rietveld 408576698