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

LibWeb: Add a string-to-same-site-attribute converter

This commit is contained in:
Timothy Flynn 2022-11-11 10:30:26 -05:00 committed by Linus Groh
parent a3d6c2f6af
commit fce9fcf154
3 changed files with 13 additions and 7 deletions

View file

@ -40,6 +40,7 @@ struct Cookie {
};
StringView same_site_to_string(SameSite same_site_mode);
SameSite same_site_from_string(StringView same_site_mode);
}