1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:07:36 +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

@ -30,7 +30,7 @@ Optional<ParsedCookie> parse_cookie(String const& cookie_string);
namespace IPC {
bool encode(IPC::Encoder&, Web::Cookie::ParsedCookie const&);
ErrorOr<void> decode(IPC::Decoder&, Web::Cookie::ParsedCookie&);
bool encode(Encoder&, Web::Cookie::ParsedCookie const&);
ErrorOr<void> decode(Decoder&, Web::Cookie::ParsedCookie&);
}