Chromium Code Reviews| Index: cc/ipc/display_compositor.mojom |
| diff --git a/cc/ipc/display_compositor.mojom b/cc/ipc/display_compositor.mojom |
| index 52b688aafd62cd930c54aa99de03ad63e015d645..6813934fc3ccd8e6135d0e57c1991faa922da64f 100644 |
| --- a/cc/ipc/display_compositor.mojom |
| +++ b/cc/ipc/display_compositor.mojom |
| @@ -57,6 +57,16 @@ interface DisplayCompositor { |
| cc.mojom.MojoCompositorFrameSink& compositor_frame_sink, |
| cc.mojom.MojoCompositorFrameSinkPrivate& compositor_frame_sink_private, |
| cc.mojom.MojoCompositorFrameSinkClient compositor_frame_sink_client); |
| + |
| + // Set up a BeginFrame relationship between two FrameSinkIds. In this case, |
| + // the child inherits the BeginFrameSource from the parent if it doesn't |
| + // already have a BeginFrameSource. |
| + RegisterFrameSinkHierarchy(cc.mojom.FrameSinkId parent_frame_sink_id, |
| + cc.mojom.FrameSinkId child_frame_sink_id); |
|
kylechar
2017/02/24 21:23:16
formatting.
Fady Samuel
2017/02/24 21:34:47
Done.
|
| + |
| + // Removes a BeginFrame relationship between two FrameSinkIds. |
| + UnregisterFrameSinkHierarchy(cc.mojom.FrameSinkId parent_frame_sink_id, |
| + cc.mojom.FrameSinkId child_frame_sink_id); |
|
kylechar
2017/02/24 21:23:16
formatting.
Fady Samuel
2017/02/24 21:34:47
Done.
|
| }; |
| // The DisplayCompositorClient interface is implemented by the Display |