| Index: components/viz/service/frame_sinks/compositor_frame_sink_support_manager.h
|
| diff --git a/components/viz/service/frame_sinks/compositor_frame_sink_support_manager.h b/components/viz/service/frame_sinks/compositor_frame_sink_support_manager.h
|
| index 91a4e805709b7d0328fe6b9254f3fce273a44443..58e185b8c4781874e9ae1229089ae3e03dae013a 100644
|
| --- a/components/viz/service/frame_sinks/compositor_frame_sink_support_manager.h
|
| +++ b/components/viz/service/frame_sinks/compositor_frame_sink_support_manager.h
|
| @@ -8,19 +8,23 @@
|
| #include <memory>
|
|
|
| #include "base/callback.h"
|
| -
|
| namespace viz {
|
|
|
| class CompositorFrameSinkSupport;
|
| class CompositorFrameSinkSupportClient;
|
| class FrameSinkId;
|
|
|
| +namespace mojom {
|
| +class TargetFrameForInputDelegate;
|
| +}
|
| +
|
| // This inteface provides a way for DirectLayerTreeFrameSink to create a
|
| // CompositorFrameSinkSupport.
|
| class CompositorFrameSinkSupportManager {
|
| public:
|
| virtual std::unique_ptr<CompositorFrameSinkSupport>
|
| CreateCompositorFrameSinkSupport(CompositorFrameSinkSupportClient* client,
|
| + mojom::TargetFrameForInputDelegate*,
|
| const FrameSinkId& frame_sink_id,
|
| bool is_root,
|
| bool handles_frame_sink_id_invalidation,
|
|
|