diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-09 16:56:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 16:56:56 -0400 |
commit | 89939be9e6c455f851978eb27d3ecb201c0f32be (patch) | |
tree | bb00ae611ae39a09f03e154040613b92c35460c9 /src/core/telemetry_session.h | |
parent | 141a0d938660ae8b94ae2a4259db7f4f4d136ca0 (diff) | |
parent | e3b4d31f4ec689b1e4b16db124fb64dfc122ca07 (diff) |
Merge pull request #1465 from lioncash/telemetry
telemetry_session: Minor miscellaneous changes
Diffstat (limited to 'src/core/telemetry_session.h')
-rw-r--r-- | src/core/telemetry_session.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h index cec271df0..2a4845797 100644 --- a/src/core/telemetry_session.h +++ b/src/core/telemetry_session.h @@ -5,6 +5,7 @@ #pragma once #include <memory> +#include <string> #include "common/telemetry.h" namespace Core { @@ -30,8 +31,6 @@ public: field_collection.AddField(type, name, std::move(value)); } - static void FinalizeAsyncJob(); - private: Telemetry::FieldCollection field_collection; ///< Tracks all added fields for the session std::unique_ptr<Telemetry::VisitorInterface> backend; ///< Backend interface that logs fields @@ -53,7 +52,6 @@ u64 RegenerateTelemetryId(); * Verifies the username and token. * @param username yuzu username to use for authentication. * @param token yuzu token to use for authentication. - * @param func A function that gets exectued when the verification is finished * @returns Future with bool indicating whether the verification succeeded */ bool VerifyLogin(const std::string& username, const std::string& token); |