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

Unified Diff: content/common/frame_messages.h

Issue 600553003: Enable swapping a frame back in to its parent process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remoteToLocal
Patch Set: Created 6 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 17739522f077294634cf8a8375b5fc6afe2aca48..8021587a2eb3ded13e2df4488388d03333f6e468 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -360,9 +360,12 @@ IPC_MESSAGE_ROUTED0(FrameMsg_DisownOpener)
// Instructs the renderer to create a new RenderFrame object with |routing_id|.
// The new frame should be created as a child of the object identified by
// |parent_routing_id| or as top level if that is MSG_ROUTING_NONE.
-IPC_MESSAGE_CONTROL2(FrameMsg_NewFrame,
+// If a valid proxy_routing_id is provided, the new frame will be configured to
Charlie Reis 2014/10/28 16:38:29 nit: |proxy_routing_id|
Nate Chapin 2014/10/28 19:59:20 Done.
+// replace the proxy on commit.
+IPC_MESSAGE_CONTROL3(FrameMsg_NewFrame,
int /* routing_id */,
- int /* parent_routing_id */)
+ int /* parent_routing_id */,
+ int /* proxy_routing_id */)
// Instructs the renderer to create a new RenderFrameProxy object with
// |routing_id|. The new proxy should be created as a child of the object

Powered by Google App Engine
This is Rietveld 408576698