mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
11 lines
336 B
Plaintext
11 lines
336 B
Plaintext
module content.mojom;
|
|
|
|
import "services/viz/public/interfaces/compositing/compositor_frame_sink.mojom";
|
|
|
|
// This interface provides CompositorFrameSink for the renderer.
|
|
interface FrameSinkProvider {
|
|
CreateForWidget(
|
|
int32 widget_id, viz.mojom.CompositorFrameSink& request,
|
|
viz.mojom.CompositorFrameSinkClient client);
|
|
};
|