1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:17:42 +00:00

LibWebView+WebContent: Do not manually serialize cookie sources over IPC

LibIPC can serialize enumeration automatically (this was not the case
when these IPCs were added).
This commit is contained in:
Timothy Flynn 2024-01-26 11:14:42 -05:00 committed by Andreas Kling
parent 85b8971a80
commit 9b957ead13
5 changed files with 11 additions and 11 deletions

View file

@ -70,7 +70,7 @@ static bool is_primitive_type(ByteString const& type)
static bool is_simple_type(ByteString const& type)
{
// Small types that it makes sense just to pass by value.
return type.is_one_of("Gfx::Color", "Web::DevicePixels", "Gfx::IntPoint", "Gfx::FloatPoint", "Web::DevicePixelPoint", "Gfx::IntSize", "Gfx::FloatSize", "Web::DevicePixelSize", "Core::File::OpenMode");
return type.is_one_of("Gfx::Color", "Web::DevicePixels", "Gfx::IntPoint", "Gfx::FloatPoint", "Web::DevicePixelPoint", "Gfx::IntSize", "Gfx::FloatSize", "Web::DevicePixelSize", "Core::File::OpenMode", "Web::Cookie::Source");
}
static bool is_primitive_or_simple_type(ByteString const& type)