summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/web_browser.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-03-12 00:34:23 +0100
committerZach Hilman <zachhilman@gmail.com>2019-04-17 17:35:24 +0200
commitf7540157e41f7ebcf06baed66947567a3a46019f (patch)
treed869d4a8389ac7786c6153ee62acff108a4546c7 /src/core/frontend/applets/web_browser.h
parentcore: Remove specific applets in favor of AppletManager (diff)
downloadyuzu-f7540157e41f7ebcf06baed66947567a3a46019f.tar
yuzu-f7540157e41f7ebcf06baed66947567a3a46019f.tar.gz
yuzu-f7540157e41f7ebcf06baed66947567a3a46019f.tar.bz2
yuzu-f7540157e41f7ebcf06baed66947567a3a46019f.tar.lz
yuzu-f7540157e41f7ebcf06baed66947567a3a46019f.tar.xz
yuzu-f7540157e41f7ebcf06baed66947567a3a46019f.tar.zst
yuzu-f7540157e41f7ebcf06baed66947567a3a46019f.zip
Diffstat (limited to '')
-rw-r--r--src/core/frontend/applets/web_browser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/frontend/applets/web_browser.h b/src/core/frontend/applets/web_browser.h
index f952856af..41d272d26 100644
--- a/src/core/frontend/applets/web_browser.h
+++ b/src/core/frontend/applets/web_browser.h
@@ -14,7 +14,7 @@ public:
virtual ~WebBrowserApplet();
virtual void OpenPage(std::string_view url, std::function<void()> unpack_romfs_callback,
- std::function<void()> finished_callback) = 0;
+ std::function<void()> finished_callback) const = 0;
};
class DefaultWebBrowserApplet final : public WebBrowserApplet {
@@ -22,7 +22,7 @@ public:
~DefaultWebBrowserApplet() override;
void OpenPage(std::string_view url, std::function<void()> unpack_romfs_callback,
- std::function<void()> finished_callback) override;
+ std::function<void()> finished_callback) const override;
};
} // namespace Core::Frontend