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

Unified Diff: content/common/frame_messages.h

Issue 894843003: Move the RenderProcessGone IPC from RenderViewHost to RenderFrameHost (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for swapped out RFHs. 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 14a3756684030f5dce84cb405e98f1fb015d146e..76d67b08dda8f61075da31953bc64e27b01c9390 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -577,6 +577,12 @@ IPC_SYNC_MESSAGE_CONTROL3_1(FrameHostMsg_CreateChildFrame,
// detached from the DOM.
IPC_MESSAGE_ROUTED0(FrameHostMsg_Detach)
+// Indicates the renderer process is gone. This actually is sent by the
+// browser process to itself, but keeps the interface cleaner.
+IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone,
+ int, /* this really is base::TerminationStatus */
+ int /* exit_code */)
+
// Sent by the renderer when the frame becomes focused.
IPC_MESSAGE_ROUTED0(FrameHostMsg_FrameFocused)

Powered by Google App Engine
This is Rietveld 408576698