diff options
| author | 2019-01-17 11:25:34 -0500 | |
|---|---|---|
| committer | 2019-01-17 11:25:37 -0500 | |
| commit | 59619285438ce72a62e2e6522a9ca135419cbefd (patch) | |
| tree | bfc10b330a1117ad861d6f38646407a4a66ae043 /src | |
| parent | core/frontend/applets/web_browser: Make OpenPage() non-const (diff) | |
| download | yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar.gz yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.tar.xz yuzu-59619285438ce72a62e2e6522a9ca135419cbefd.zip | |
core/frontend/applets/web_browser: Include missing headers
Gets rid of a few indirect inclusions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/am/applets/web_browser.cpp | 10 |
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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <array> | ||
| 6 | #include <cstring> | ||
| 7 | #include <vector> | ||
| 8 | |||
| 9 | #include "common/assert.h" | ||
| 10 | #include "common/common_funcs.h" | ||
| 5 | #include "common/common_paths.h" | 11 | #include "common/common_paths.h" |
| 12 | #include "common/file_util.h" | ||
| 6 | #include "common/hex_util.h" | 13 | #include "common/hex_util.h" |
| 7 | #include "common/logging/backend.h" | 14 | #include "common/logging/log.h" |
| 8 | #include "common/string_util.h" | 15 | #include "common/string_util.h" |
| 9 | #include "core/core.h" | 16 | #include "core/core.h" |
| 10 | #include "core/file_sys/content_archive.h" | 17 | #include "core/file_sys/content_archive.h" |
| @@ -12,7 +19,6 @@ | |||
| 12 | #include "core/file_sys/nca_metadata.h" | 19 | #include "core/file_sys/nca_metadata.h" |
| 13 | #include "core/file_sys/registered_cache.h" | 20 | #include "core/file_sys/registered_cache.h" |
| 14 | #include "core/file_sys/romfs.h" | 21 | #include "core/file_sys/romfs.h" |
| 15 | #include "core/file_sys/romfs_factory.h" | ||
| 16 | #include "core/file_sys/vfs_types.h" | 22 | #include "core/file_sys/vfs_types.h" |
| 17 | #include "core/frontend/applets/web_browser.h" | 23 | #include "core/frontend/applets/web_browser.h" |
| 18 | #include "core/hle/kernel/process.h" | 24 | #include "core/hle/kernel/process.h" |