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

Unified Diff: content/common/frame_messages.h

Issue 2632633006: Implement NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE. (Closed)
Patch Set: Remove surplus semicolon. Created 3 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 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)

Powered by Google App Engine
This is Rietveld 408576698