summaryrefslogtreecommitdiff
path: root/src/yuzu/applets/qt_web_browser.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-31 10:25:28 -0600
committerGitHub <noreply@github.com>2024-01-31 10:25:28 -0600
commit7cc7d027f74b5bffc0b3f8f3a6c3110999c7cc4c (patch)
tree24b2ed412f2683c8460839778ea7761d052bc38f /src/yuzu/applets/qt_web_browser.h
parent12e5293c73ce9965a6f73a8861d8b84f3f4ed615 (diff)
parent817d916233adcfb26814fde677e71d9825ce614c (diff)
Merge pull request #12760 from liamwhite/mp-am
am: rewrite for multiprocess support
Diffstat (limited to 'src/yuzu/applets/qt_web_browser.h')
-rw-r--r--src/yuzu/applets/qt_web_browser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/yuzu/applets/qt_web_browser.h b/src/yuzu/applets/qt_web_browser.h
index 1234108ae..e8a0b6931 100644
--- a/src/yuzu/applets/qt_web_browser.h
+++ b/src/yuzu/applets/qt_web_browser.h
@@ -85,8 +85,8 @@ public:
[[nodiscard]] bool IsFinished() const;
void SetFinished(bool finished_);
- [[nodiscard]] Service::AM::Applets::WebExitReason GetExitReason() const;
- void SetExitReason(Service::AM::Applets::WebExitReason exit_reason_);
+ [[nodiscard]] Service::AM::Frontend::WebExitReason GetExitReason() const;
+ void SetExitReason(Service::AM::Frontend::WebExitReason exit_reason_);
[[nodiscard]] const std::string& GetLastURL() const;
void SetLastURL(std::string last_url_);
@@ -176,8 +176,8 @@ private:
std::atomic<bool> finished{};
- Service::AM::Applets::WebExitReason exit_reason{
- Service::AM::Applets::WebExitReason::EndButtonPressed};
+ Service::AM::Frontend::WebExitReason exit_reason{
+ Service::AM::Frontend::WebExitReason::EndButtonPressed};
std::string last_url{"http://localhost/"};
@@ -212,7 +212,7 @@ signals:
private:
void MainWindowExtractOfflineRomFS();
- void MainWindowWebBrowserClosed(Service::AM::Applets::WebExitReason exit_reason,
+ void MainWindowWebBrowserClosed(Service::AM::Frontend::WebExitReason exit_reason,
std::string last_url);
mutable ExtractROMFSCallback extract_romfs_callback;