diff options
author | kenrb@chromium.org <kenrb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-23 20:52:16 +0000 |
---|---|---|
committer | kenrb@chromium.org <kenrb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-23 20:52:16 +0000 |
commit | bffc830292ebad36ce520e9dce03ecb7a21fd25a (patch) | |
tree | ff6a6e55730efc3b077a86b7e66427f5f1c1af3e /content/common/frame_messages.h | |
parent | d6ed71cb2587955d36fb7ec81dfc9bcd0c96dbf7 (diff) | |
download | chromium_src-bffc830292ebad36ce520e9dce03ecb7a21fd25a.zip chromium_src-bffc830292ebad36ce520e9dce03ecb7a21fd25a.tar.gz chromium_src-bffc830292ebad36ce520e9dce03ecb7a21fd25a.tar.bz2 |
Make out of process iframes draw when flag enabled.
This patch provides the final pieces to allow out of process iframes
to render in their embedding page when running under --site-per-process.
The --force-compositing-mode is also required unless using Aura.
BrowserPluginCompositingHelper has been renamed to
ChildFrameCompositingHelper and is now being used for both purposes.
The split code paths within the helper class will be merged when
BrowserPlugin is converted to use RenderFrame for IPC routing.
TBR=creis@chromium.org
BUG=325803
Review URL: https://codereview.chromium.org/136953003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246682 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/frame_messages.h')
-rw-r--r-- | content/common/frame_messages.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h index 0bba2b4..65d3907 100644 --- a/content/common/frame_messages.h +++ b/content/common/frame_messages.h @@ -159,6 +159,9 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_CompositorFrameSwappedACK, // Indicates that the current frame has swapped out, after a SwapOut message. IPC_MESSAGE_ROUTED0(FrameHostMsg_SwapOut_ACK) +IPC_MESSAGE_ROUTED1(FrameHostMsg_ReclaimCompositorResources, + FrameHostMsg_ReclaimCompositorResources_Params /* params */) + // Instructs the frame to swap out for a cross-site transition, including // running the unload event handler. Expects a SwapOut_ACK message when // finished. |