summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/manager_root_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/vi/manager_root_service.h')
-rw-r--r--src/core/hle/service/vi/manager_root_service.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/core/hle/service/vi/manager_root_service.h b/src/core/hle/service/vi/manager_root_service.h
index 509445b7b..77cd32869 100644
--- a/src/core/hle/service/vi/manager_root_service.h
+++ b/src/core/hle/service/vi/manager_root_service.h
@@ -10,21 +10,15 @@ namespace Core {
class System;
}
-namespace Service::Nvnflinger {
-class IHOSBinderDriver;
-} // namespace Service::Nvnflinger
-
namespace Service::VI {
-class FbshareBufferManager;
+class Container;
class IApplicationDisplayService;
enum class Policy : u32;
class IManagerRootService final : public ServiceFramework<IManagerRootService> {
public:
- explicit IManagerRootService(Core::System& system_,
- std::shared_ptr<Nvnflinger::IHOSBinderDriver> binder_service,
- std::shared_ptr<FbshareBufferManager> shared_buffer_manager);
+ explicit IManagerRootService(Core::System& system_, std::shared_ptr<Container> container);
~IManagerRootService() override;
Result GetDisplayService(
@@ -32,8 +26,7 @@ public:
Policy policy);
private:
- const std::shared_ptr<Nvnflinger::IHOSBinderDriver> m_binder_service;
- const std::shared_ptr<FbshareBufferManager> m_shared_buffer_manager;
+ const std::shared_ptr<Container> m_container;
};
} // namespace Service::VI