Chromium Code Reviews| Index: content/browser/frame_host/render_frame_host_manager.h |
| diff --git a/content/browser/frame_host/render_frame_host_manager.h b/content/browser/frame_host/render_frame_host_manager.h |
| index 34740ca51a8fb503e071098ac5ccbc0881f2c7e4..b6db7c296b7f516ddf75646fa4abc1540d5e4e92 100644 |
| --- a/content/browser/frame_host/render_frame_host_manager.h |
| +++ b/content/browser/frame_host/render_frame_host_manager.h |
| @@ -431,6 +431,12 @@ class CONTENT_EXPORT RenderFrameHostManager |
| // when the frame changes its setting. |
| void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
| + // Called when the client changes whether the frame's owner element in the |
| + // embedder document should be collapsed, that is, remove from the layout as |
| + // if it did not exist. Never called for main frames. Only has an effect for |
| + // <iframe> owner elements. |
|
nasko
2017/04/20 15:53:40
nit: s/<iframe>/frame/ as I think we use the same
engedy
2017/04/28 13:43:59
They share a base class (HTMLFrameElementBase), bu
|
| + void OnDidChangeCollapsedState(bool collapsed); |
| + |
| // Called on a frame to notify it that its out-of-process parent frame |
| // changed a property (such as allowFullscreen) on its <iframe> element. |
| // Sends updated FrameOwnerProperties to the RenderFrame and to all proxies, |