Chromium Code Reviews| Index: content/common/frame_messages.h |
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
| index cc85b72bc625c42a62289dde958744a21505d589..e99ba76f3516da440b3556bfd4429906504da368 100644 |
| --- a/content/common/frame_messages.h |
| +++ b/content/common/frame_messages.h |
| @@ -741,6 +741,10 @@ IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, |
| // Dispatch a load event in the iframe element containing this frame. |
| IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) |
| +// Sent to a child frame to control whether its frame owner element in the |
| +// parent frame should be collapsed, i.e. removed from the layout. |
| +IPC_MESSAGE_ROUTED1(FrameMsg_CollapseFrameOwner, bool /* collapsed */) |
|
clamy
2017/01/18 15:10:55
Wouldn't is be easier to send the IPC to the paren
engedy
2017/01/18 23:37:14
Theoretically, we could use |unique_name|. This wo
engedy
2017/02/17 18:09:25
@Nasko, what do think about this? To me, sending
|
| + |
| // Notifies the frame that its parent has changed the frame's sandbox flags. |
| IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) |