summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/web_browser.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-01-17 17:25:34 +0100
committerLioncash <mathew1800@gmail.com>2019-01-17 17:25:37 +0100
commit59619285438ce72a62e2e6522a9ca135419cbefd (patch)
treebfc10b330a1117ad861d6f38646407a4a66ae043 /src/core/hle/service/am/applets/web_browser.cpp
parentcore/frontend/applets/web_browser: Make OpenPage() non-const (diff)
downloadyuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar
yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar.gz
yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar.bz2
yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar.lz
yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar.xz
yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar.zst
yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.zip
Diffstat (limited to 'src/core/hle/service/am/applets/web_browser.cpp')
-rw-r--r--src/core/hle/service/am/applets/web_browser.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applets/web_browser.cpp b/src/core/hle/service/am/applets/web_browser.cpp
index ba2650e8b..9b0aa7f5f 100644
--- a/src/core/hle/service/am/applets/web_browser.cpp
+++ b/src/core/hle/service/am/applets/web_browser.cpp
@@ -2,9 +2,16 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include <array>
+#include <cstring>
+#include <vector>
+
+#include "common/assert.h"
+#include "common/common_funcs.h"
#include "common/common_paths.h"
+#include "common/file_util.h"
#include "common/hex_util.h"
-#include "common/logging/backend.h"
+#include "common/logging/log.h"
#include "common/string_util.h"
#include "core/core.h"
#include "core/file_sys/content_archive.h"
@@ -12,7 +19,6 @@
#include "core/file_sys/nca_metadata.h"
#include "core/file_sys/registered_cache.h"
#include "core/file_sys/romfs.h"
-#include "core/file_sys/romfs_factory.h"
#include "core/file_sys/vfs_types.h"
#include "core/frontend/applets/web_browser.h"
#include "core/hle/kernel/process.h"