summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/service_creator.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/bcat/service_creator.h (renamed from src/core/hle/service/bcat/bcat_interface.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/bcat/bcat_interface.h b/src/core/hle/service/bcat/service_creator.h
index 9282b57bb..50e663324 100644
--- a/src/core/hle/service/bcat/bcat_interface.h
+++ b/src/core/hle/service/bcat/service_creator.h
@@ -19,19 +19,19 @@ class BcatBackend;
class IBcatService;
class IDeliveryCacheStorageService;
-class BcatInterface final : public ServiceFramework<BcatInterface> {
+class IServiceCreator final : public ServiceFramework<IServiceCreator> {
public:
- explicit BcatInterface(Core::System& system_, const char* name_);
- ~BcatInterface() override;
+ explicit IServiceCreator(Core::System& system_, const char* name_);
+ ~IServiceCreator() override;
private:
- Result CreateBcatService(OutInterface<IBcatService> out_interface);
+ Result CreateBcatService(ClientProcessId process_id, OutInterface<IBcatService> out_interface);
Result CreateDeliveryCacheStorageService(
- OutInterface<IDeliveryCacheStorageService> out_interface);
+ ClientProcessId process_id, OutInterface<IDeliveryCacheStorageService> out_interface);
Result CreateDeliveryCacheStorageServiceWithApplicationId(
- u64 title_id, OutInterface<IDeliveryCacheStorageService> out_interface);
+ u64 application_id, OutInterface<IDeliveryCacheStorageService> out_interface);
std::unique_ptr<BcatBackend> backend;
Service::FileSystem::FileSystemController& fsc;