diff options
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) =| |