// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/viz/service/input/input_manager.h" #include <utility> namespace viz { InputManager::~InputManager() { … } InputManager::InputManager(FrameSinkManagerImpl* frame_sink_manager) : … { … } void InputManager::OnCreateCompositorFrameSink( const FrameSinkId& frame_sink_id, bool is_root, input::mojom::RenderInputRouterConfigPtr render_input_router_config) { … } void InputManager::OnDestroyedCompositorFrameSink( const FrameSinkId& frame_sink_id) { … } } // namespace viz