LibWeb: Make Cookie::Cookie transportable over IPC

This commit is contained in:
Tobias Christiansen 2022-10-15 13:54:54 +02:00 committed by Linus Groh
commit 2c808958b9
Notes: sideshowbarker 2024-07-17 05:44:12 +09:00
3 changed files with 51 additions and 0 deletions

View file

@ -8,6 +8,7 @@
#include <AK/String.h>
#include <LibCore/DateTime.h>
#include <LibIPC/Forward.h>
namespace Web::Cookie {
@ -31,3 +32,10 @@ struct Cookie {
};
}
namespace IPC {
bool encode(Encoder&, Web::Cookie::Cookie const&);
ErrorOr<void> decode(Decoder&, Web::Cookie::Cookie&);
}