aboutsummaryrefslogtreecommitdiff
path: root/src/core/frontend/applets/general_frontend.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-31 09:40:32 -0500
committerLiam <byteslice@airmail.cc>2024-01-29 18:43:45 -0500
commitdfb9fa0144ca79e596f6f2b1bc960b1a44745aa6 (patch)
treeb90633109392383feaa8420e984c40c9a1799903 /src/core/frontend/applets/general_frontend.cpp
parenta7e9d7842dc78e09bfe50ba3bc471b8a75d29b96 (diff)
am: re-namespace frontend applets to frontend directory
Diffstat (limited to 'src/core/frontend/applets/general_frontend.cpp')
-rw-r--r--src/core/frontend/applets/general_frontend.cpp59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/core/frontend/applets/general_frontend.cpp b/src/core/frontend/applets/general_frontend.cpp
deleted file mode 100644
index b4b213a31..000000000
--- a/src/core/frontend/applets/general_frontend.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#include "common/logging/log.h"
-#include "core/frontend/applets/general_frontend.h"
-
-namespace Core::Frontend {
-
-ParentalControlsApplet::~ParentalControlsApplet() = default;
-
-DefaultParentalControlsApplet::~DefaultParentalControlsApplet() = default;
-
-void DefaultParentalControlsApplet::Close() const {}
-
-void DefaultParentalControlsApplet::VerifyPIN(std::function<void(bool)> finished,
- bool suspend_future_verification_temporarily) {
- LOG_INFO(Service_AM,
- "Application requested frontend to verify PIN (normal), "
- "suspend_future_verification_temporarily={}, verifying as correct.",
- suspend_future_verification_temporarily);
- finished(true);
-}
-
-void DefaultParentalControlsApplet::VerifyPINForSettings(std::function<void(bool)> finished) {
- LOG_INFO(Service_AM,
- "Application requested frontend to verify PIN (settings), verifying as correct.");
- finished(true);
-}
-
-void DefaultParentalControlsApplet::RegisterPIN(std::function<void()> finished) {
- LOG_INFO(Service_AM, "Application requested frontend to register new PIN");
- finished();
-}
-
-void DefaultParentalControlsApplet::ChangePIN(std::function<void()> finished) {
- LOG_INFO(Service_AM, "Application requested frontend to change PIN to new value");
- finished();
-}
-
-PhotoViewerApplet::~PhotoViewerApplet() = default;
-
-DefaultPhotoViewerApplet::~DefaultPhotoViewerApplet() = default;
-
-void DefaultPhotoViewerApplet::Close() const {}
-
-void DefaultPhotoViewerApplet::ShowPhotosForApplication(u64 title_id,
- std::function<void()> finished) const {
- LOG_INFO(Service_AM,
- "Application requested frontend to display stored photos for title_id={:016X}",
- title_id);
- finished();
-}
-
-void DefaultPhotoViewerApplet::ShowAllPhotos(std::function<void()> finished) const {
- LOG_INFO(Service_AM, "Application requested frontend to display all stored photos.");
- finished();
-}
-
-} // namespace Core::Frontend