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

Unified Diff: content/common/frame_messages.h

Issue 1635873003: Replicating WebFrame::uniqueName across renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump-render-tree3
Patch Set: Removed unnecessary crbug comment. Created 4 years, 11 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 2ae005fc1209a41eeee682302b1e6fd922ad096f..4038efe6fabe62c87a6983bc2df2deb837f464a8 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -375,6 +375,7 @@ IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
IPC_STRUCT_TRAITS_MEMBER(origin)
IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
IPC_STRUCT_TRAITS_MEMBER(name)
+ IPC_STRUCT_TRAITS_MEMBER(unique_name)
IPC_STRUCT_TRAITS_MEMBER(scope)
IPC_STRUCT_TRAITS_MEMBER(should_enforce_strict_mixed_content_checking)
IPC_STRUCT_TRAITS_END()
@@ -515,6 +516,15 @@ IPC_STRUCT_BEGIN(FrameHostMsg_HittestData_Params)
IPC_STRUCT_MEMBER(bool, ignored_for_hittest)
IPC_STRUCT_END()
+IPC_STRUCT_BEGIN(FrameHostMsg_CreateChildFrame_Params)
+ IPC_STRUCT_MEMBER(int32_t, parent_routing_id)
+ IPC_STRUCT_MEMBER(blink::WebTreeScopeType, scope)
+ IPC_STRUCT_MEMBER(std::string, frame_name)
+ IPC_STRUCT_MEMBER(std::string, frame_unique_name)
+ IPC_STRUCT_MEMBER(blink::WebSandboxFlags, sandbox_flags)
+ IPC_STRUCT_MEMBER(blink::WebFrameOwnerProperties, frame_owner_properties)
+IPC_STRUCT_END()
+
#if defined(OS_MACOSX) || defined(OS_ANDROID)
// This message is used for supporting popup menus on Mac OS X and Android using
// native controls. See the FrameHostMsg_ShowPopup message.
@@ -746,7 +756,9 @@ IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags)
// Update a proxy's window.name property. Used when the frame's name is
// changed in another process.
-IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */)
+IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName,
+ std::string /* name */,
+ std::string /* unique_name */)
// Update a proxy's replicated enforcement of strict mixed content
// checking. Used when the frame's mixed content setting is changed in
@@ -874,14 +886,9 @@ IPC_MESSAGE_ROUTED4(FrameHostMsg_AddMessageToConsole,
//
// Each of these messages will have a corresponding FrameHostMsg_Detach message
// sent when the frame is detached from the DOM.
-IPC_SYNC_MESSAGE_CONTROL5_1(
- FrameHostMsg_CreateChildFrame,
- int32_t /* parent_routing_id */,
- blink::WebTreeScopeType /* scope */,
- std::string /* frame_name */,
- blink::WebSandboxFlags /* sandbox flags */,
- blink::WebFrameOwnerProperties /* frame_owner_properties */,
- int32_t /* new_routing_id */)
+IPC_SYNC_MESSAGE_CONTROL1_1(FrameHostMsg_CreateChildFrame,
+ FrameHostMsg_CreateChildFrame_Params,
+ int32_t /* new_routing_id */)
// Sent by the renderer to the parent RenderFrameHost when a child frame is
// detached from the DOM.
@@ -936,7 +943,9 @@ IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading)
IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateState, content::PageState /* state */)
// Sent when the frame changes its window.name.
-IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeName, std::string /* name */)
+IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeName,
+ std::string /* name */,
+ std::string /* unique_name */)
// Sent when the frame starts enforcing strict mixed content
// checking. Sending this information in DidCommitProvisionalLoad isn't

Powered by Google App Engine
This is Rietveld 408576698