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

Userland: Remove a few gratuitous IPC namespace qualifiers

Spotted this while trying to search for specific IPC encode/decode
implementations. Now they are all the same, so searching is easier.
This commit is contained in:
Valtteri Koskivuori 2022-04-03 15:44:25 +03:00 committed by Linus Groh
parent 85ed64b99c
commit f2c02077ba
5 changed files with 10 additions and 10 deletions

View file

@ -333,7 +333,7 @@ Optional<Core::DateTime> parse_date_time(StringView date_string)
}
bool IPC::encode(IPC::Encoder& encoder, Web::Cookie::ParsedCookie const& cookie)
bool IPC::encode(Encoder& encoder, Web::Cookie::ParsedCookie const& cookie)
{
encoder << cookie.name;
encoder << cookie.value;
@ -347,7 +347,7 @@ bool IPC::encode(IPC::Encoder& encoder, Web::Cookie::ParsedCookie const& cookie)
return true;
}
ErrorOr<void> IPC::decode(IPC::Decoder& decoder, Web::Cookie::ParsedCookie& cookie)
ErrorOr<void> IPC::decode(Decoder& decoder, Web::Cookie::ParsedCookie& cookie)
{
TRY(decoder.decode(cookie.name));
TRY(decoder.decode(cookie.value));