diff options
author | Timothy <timmot@users.noreply.github.com> | 2021-07-02 21:40:44 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-03 12:16:00 +0200 |
commit | 944e5cfb350ec1117ae2923dffb094b68588b8e9 (patch) | |
tree | 366907051f7d518103ac1d46626554020ff778f3 /Userland/Services/WebContent | |
parent | 83fb97c30153e01fe501de0414ac07808a8b1339 (diff) | |
download | serenity-944e5cfb350ec1117ae2923dffb094b68588b8e9.zip |
Everywhere: Use IPC include syntax
Remove superfluous includes from IPCCompiler's generated output and
add include directives in IPC definitions where appropriate.
Diffstat (limited to 'Userland/Services/WebContent')
-rw-r--r-- | Userland/Services/WebContent/WebContentClient.ipc | 4 | ||||
-rw-r--r-- | Userland/Services/WebContent/WebContentServer.ipc | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/WebContentClient.ipc b/Userland/Services/WebContent/WebContentClient.ipc index 16d8f111ee..6369199dba 100644 --- a/Userland/Services/WebContent/WebContentClient.ipc +++ b/Userland/Services/WebContent/WebContentClient.ipc @@ -1,3 +1,7 @@ +#include <AK/URL.h> +#include <LibCore/AnonymousBuffer.h> +#include <LibGfx/ShareableBitmap.h> + endpoint WebContentClient { did_start_loading(URL url) =| diff --git a/Userland/Services/WebContent/WebContentServer.ipc b/Userland/Services/WebContent/WebContentServer.ipc index fc92a6ffaa..92e80b676c 100644 --- a/Userland/Services/WebContent/WebContentServer.ipc +++ b/Userland/Services/WebContent/WebContentServer.ipc @@ -1,3 +1,7 @@ +#include <AK/URL.h> +#include <LibCore/AnonymousBuffer.h> +#include <LibGfx/ShareableBitmap.h> + endpoint WebContentServer { update_system_theme(Core::AnonymousBuffer theme_buffer) =| |