Index: content/common/frame_messages.h |
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
index 6dbe9302c03da24f1c5ea42737103c232c034252..1030707ab8d818d4ad5a2dc45567c1ef22d1a969 100644 |
--- a/content/common/frame_messages.h |
+++ b/content/common/frame_messages.h |
@@ -301,9 +301,10 @@ IPC_MESSAGE_ROUTED1(FrameMsg_Navigate, FrameMsg_Navigate_Params) |
IPC_MESSAGE_ROUTED0(FrameMsg_BeforeUnload) |
// Instructs the frame to swap out for a cross-site transition, including |
-// running the unload event handler. Expects a SwapOut_ACK message when |
-// finished. |
-IPC_MESSAGE_ROUTED0(FrameMsg_SwapOut) |
+// running the unload event handler and creating a RenderFrameProxy with the |
+// given |proxy_routing_id|. Expects a SwapOut_ACK message when finished. |
+IPC_MESSAGE_ROUTED1(FrameMsg_SwapOut, |
+ int /* proxy_routing_id */) |
// Request for the renderer to insert CSS into the frame. |
IPC_MESSAGE_ROUTED1(FrameMsg_CSSInsertRequest, |
@@ -353,6 +354,10 @@ IPC_MESSAGE_ROUTED2(FrameMsg_DidChooseColorResponse, unsigned, SkColor) |
// Notifies the color chooser client that the color chooser has ended. |
IPC_MESSAGE_ROUTED1(FrameMsg_DidEndColorChooser, unsigned) |
+// Notifies the corresponding RenderFrameProxy object to replace ifself with the |
Charlie Reis
2014/05/15 00:32:50
nit: itself
nasko
2014/05/15 18:47:13
Done.
|
+// RenderFrame object it is associated with. |
+IPC_MESSAGE_ROUTED0(FrameMsg_DeleteProxy) |
+ |
// ----------------------------------------------------------------------------- |
// Messages sent from the renderer to the browser. |