summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-22 07:12:34 +0100
committerGitHub <noreply@github.com>2020-11-22 07:12:34 +0100
commit3a85bc1e771b8c11728b6535710e21dc092b6732 (patch)
treebe80bf80153857db46a24de4b34a7d8bbac7a0ae /src/core/telemetry_session.h
parentMerge pull request #4954 from lioncash/compare (diff)
parentpatch_manager: Remove usages of the global system instance (diff)
downloadyuzu-3a85bc1e771b8c11728b6535710e21dc092b6732.tar
yuzu-3a85bc1e771b8c11728b6535710e21dc092b6732.tar.gz
yuzu-3a85bc1e771b8c11728b6535710e21dc092b6732.tar.bz2
yuzu-3a85bc1e771b8c11728b6535710e21dc092b6732.tar.lz
yuzu-3a85bc1e771b8c11728b6535710e21dc092b6732.tar.xz
yuzu-3a85bc1e771b8c11728b6535710e21dc092b6732.tar.zst
yuzu-3a85bc1e771b8c11728b6535710e21dc092b6732.zip
Diffstat (limited to '')
-rw-r--r--src/core/telemetry_session.h18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h
index 66789d4bd..6f3d45bea 100644
--- a/src/core/telemetry_session.h
+++ b/src/core/telemetry_session.h
@@ -7,10 +7,18 @@
#include <string>
#include "common/telemetry.h"
+namespace FileSys {
+class ContentProvider;
+}
+
namespace Loader {
class AppLoader;
}
+namespace Service::FileSystem {
+class FileSystemController;
+}
+
namespace Core {
/**
@@ -40,10 +48,14 @@ public:
* - Title file format
* - Miscellaneous settings values.
*
- * @param app_loader The application loader to use to retrieve
- * title-specific information.
+ * @param app_loader The application loader to use to retrieve
+ * title-specific information.
+ * @param fsc Filesystem controller to use to retrieve info.
+ * @param content_provider Content provider to use to retrieve info.
*/
- void AddInitialInfo(Loader::AppLoader& app_loader);
+ void AddInitialInfo(Loader::AppLoader& app_loader,
+ const Service::FileSystem::FileSystemController& fsc,
+ const FileSys::ContentProvider& content_provider);
/**
* Wrapper around the Telemetry::FieldCollection::AddField method.