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

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: Created 5 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/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 424a0e21b9c7bbff3b0677b0e6a09f0c18978151..96a4acebae4946cef6fe19a4fa33a65a1d573f28 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -632,8 +632,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 that it lost focus to the specified frame in another
+// process.
+IPC_MESSAGE_ROUTED1(FrameMsg_ClearFocus, int /* focused_frame_routing_id */);
// 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