mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-24 02:37:52 -05:00
applets/web: Implement the default web browser applet frontend
This commit is contained in:
@ -356,7 +356,10 @@ void WebBrowser::ExecuteLogin() {
|
||||
|
||||
void WebBrowser::ExecuteOffline() {
|
||||
LOG_INFO(Service_AM, "Opening offline document at {}", offline_document);
|
||||
WebBrowserExit(WebExitReason::WindowClosed);
|
||||
frontend.OpenLocalWebPage(offline_document,
|
||||
[this](WebExitReason exit_reason, std::string last_url) {
|
||||
WebBrowserExit(exit_reason, last_url);
|
||||
});
|
||||
}
|
||||
|
||||
void WebBrowser::ExecuteShare() {
|
||||
|
Reference in New Issue
Block a user