mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-01-08 05:10:05 +00:00
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <string_view>
|
|
|
|
#include "core/hle/service/am/applets/applet_web_browser_types.h"
|
|
|
|
namespace Core::Frontend {
|
|
|
|
class WebBrowserApplet {
|
|
public:
|
|
virtual ~WebBrowserApplet();
|
|
|
|
virtual void OpenLocalWebPage(
|
|
const std::string& local_url, std::function<void()> extract_romfs_callback,
|
|
std::function<void(Service::AM::Applets::WebExitReason, std::string)> callback) const = 0;
|
|
|
|
virtual void OpenExternalWebPage(
|
|
const std::string& external_url,
|
|
std::function<void(Service::AM::Applets::WebExitReason, std::string)> callback) const = 0;
|
|
};
|
|
|
|
class DefaultWebBrowserApplet final : public WebBrowserApplet {
|
|
public:
|
|
~DefaultWebBrowserApplet() override;
|
|
|
|
void OpenLocalWebPage(const std::string& local_url,
|
|
std::function<void()> extract_romfs_callback,
|
|
std::function<void(Service::AM::Applets::WebExitReason, std::string)>
|
|
callback) const override;
|
|
|
|
void OpenExternalWebPage(const std::string& external_url,
|
|
std::function<void(Service::AM::Applets::WebExitReason, std::string)>
|
|
callback) const override;
|
|
};
|
|
|
|
} // namespace Core::Frontend
|