// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_MEDIA_ROUTER_BROWSER_MIRRORING_MEDIA_CONTROLLER_HOST_H_ #define COMPONENTS_MEDIA_ROUTER_BROWSER_MIRRORING_MEDIA_CONTROLLER_HOST_H_ #include "base/observer_list.h" #include "components/media_router/common/mojom/media_status.mojom.h" namespace media_router { // MirroringMediaControllerHost is a per-MediaRoute object which hosts a // MediaController, and passes to it commands related mirroring-specific media // controls. class MirroringMediaControllerHost : public mojom::MediaStatusObserver { … }; } // namespace media_router #endif // COMPONENTS_MEDIA_ROUTER_BROWSER_MIRRORING_MEDIA_CONTROLLER_HOST_H_