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

Unified Diff: content/common/frame_messages.h

Issue 954793002: Make load events in iframe elements work with OOPIF (Chromium side). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename DispatchFrameOwnerLoadEvent to DispatchLoadEventForFrameOwner Created 5 years, 10 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 5a7fc0d1b0c1d2a8af65250a23157dfef2479b31..5a72cbe1f06e2fac2991704a7acc091ee8f477a0 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -521,6 +521,9 @@ IPC_MESSAGE_ROUTED1(FrameMsg_AddStyleSheetByURL, std::string)
IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode,
AccessibilityMode)
+// Dispatch a load event in the iframe element of the specified subframe.
+IPC_MESSAGE_ROUTED1(FrameMsg_DispatchLoad, int /* subframe_routing_id */)
+
#if defined(OS_ANDROID)
// External popup menus.
@@ -861,6 +864,10 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_BeforeUnloadHandlersPresent,
IPC_MESSAGE_ROUTED1(FrameHostMsg_UnloadHandlersPresent,
bool /* present */)
+// Dispatch a load event for this frame in the iframe element of an
+// out-of-process parent frame.
+IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad)
+
#if defined(OS_MACOSX) || defined(OS_ANDROID)
// Message to show/hide a popup menu using native controls.

Powered by Google App Engine
This is Rietveld 408576698