Chromium Code Reviews| Index: cc/ipc/mojo_compositor_frame_sink.mojom |
| diff --git a/cc/ipc/mojo_compositor_frame_sink.mojom b/cc/ipc/mojo_compositor_frame_sink.mojom |
| index 58f69d61916f7a4752e04a3dfd99b940544448bd..0469f07dea8eedee34b5eaa3862eef5c88271df7 100644 |
| --- a/cc/ipc/mojo_compositor_frame_sink.mojom |
| +++ b/cc/ipc/mojo_compositor_frame_sink.mojom |
| @@ -7,6 +7,7 @@ module cc.mojom; |
| import "cc/ipc/begin_frame_args.mojom"; |
| import "cc/ipc/compositor_frame.mojom"; |
| import "cc/ipc/frame_sink_id.mojom"; |
| +import "cc/ipc/local_frame_id.mojom"; |
| import "cc/ipc/returned_resource.mojom"; |
| // A MojoCompositorFrameSink is an interface for receiving CompositorFrame |
| @@ -25,7 +26,8 @@ interface MojoCompositorFrameSink { |
| // For successful swaps, the implementation must call |
| // DidReceiveCompositorFrameAck() asynchronously when the frame has been |
| // processed in order to unthrottle the next frame. |
| - SubmitCompositorFrame(cc.mojom.CompositorFrame frame); |
| + SubmitCompositorFrame(cc.mojom.LocalFrameId local_frame_id, |
|
rjkroege
2016/11/22 18:34:02
Could you document the parameters?
Fady Samuel
2016/11/22 18:39:58
Done.
|
| + cc.mojom.CompositorFrame frame); |
| // TODO(fsamuel): ReadbackBitmap API would be useful here. |
| }; |