mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
Userland: Rename IPC::ServerConnection=>IPC::ConnectionToServer
This was done with CLion's automatic rename feature.
This commit is contained in:
parent
3a71748e5d
commit
d88da82e28
Notes:
sideshowbarker
2024-07-17 18:16:10 +09:00
Author: https://github.com/itamar8910
Commit: d88da82e28
Pull-request: https://github.com/SerenityOS/serenity/pull/12760
26 changed files with 53 additions and 53 deletions
|
@ -13,14 +13,14 @@
|
|||
#include <LibCore/Promise.h>
|
||||
#include <LibCore/StandardPaths.h>
|
||||
#include <LibGUI/Window.h>
|
||||
#include <LibIPC/ServerConnection.h>
|
||||
#include <LibIPC/ConnectionToServer.h>
|
||||
|
||||
namespace FileSystemAccessClient {
|
||||
|
||||
using Result = ErrorOr<NonnullRefPtr<Core::File>>;
|
||||
|
||||
class Client final
|
||||
: public IPC::ServerConnection<FileSystemAccessClientEndpoint, FileSystemAccessServerEndpoint>
|
||||
: public IPC::ConnectionToServer<FileSystemAccessClientEndpoint, FileSystemAccessServerEndpoint>
|
||||
, public FileSystemAccessClientEndpoint {
|
||||
IPC_CLIENT_CONNECTION(Client, "/tmp/portal/filesystemaccess")
|
||||
|
||||
|
@ -37,7 +37,7 @@ protected:
|
|||
|
||||
private:
|
||||
explicit Client(NonnullOwnPtr<Core::Stream::LocalSocket> socket)
|
||||
: IPC::ServerConnection<FileSystemAccessClientEndpoint, FileSystemAccessServerEndpoint>(*this, move(socket))
|
||||
: IPC::ConnectionToServer<FileSystemAccessClientEndpoint, FileSystemAccessServerEndpoint>(*this, move(socket))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue