diff options
author | bunnei <bunneidev@gmail.com> | 2019-01-10 17:04:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 17:04:38 -0500 |
commit | 83e8ad23310937bb72f4412c15f45231a19202f7 (patch) | |
tree | 80301af69b14a701f16e21d41ced436850085031 /src/core/core.h | |
parent | 912f2a520a77f478a33bbfb426b0aebf3148e5f7 (diff) | |
parent | 2378ecd0e8709efc47fbc73ef41e5ee0b952ee59 (diff) |
Merge pull request #1939 from DarkLordZach/web-applet
applets: Implement HLE web browser applet (LibAppletOff)
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h index 869921493..a53dbb4d4 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -11,11 +11,12 @@ #include "common/common_types.h" #include "core/file_sys/vfs_types.h" #include "core/hle/kernel/object.h" -#include "frontend/applets/profile_select.h" namespace Core::Frontend { class EmuWindow; +class ProfileSelectApplet; class SoftwareKeyboardApplet; +class WebBrowserApplet; } // namespace Core::Frontend namespace FileSys { @@ -250,6 +251,10 @@ public: const Core::Frontend::SoftwareKeyboardApplet& GetSoftwareKeyboard() const; + void SetWebBrowser(std::unique_ptr<Core::Frontend::WebBrowserApplet> applet); + + const Core::Frontend::WebBrowserApplet& GetWebBrowser() const; + private: System(); |