#include "components/named_mojo_ipc_server/fake_ipc_server.h"
namespace named_mojo_ipc_server {
FakeIpcServer::TestState::TestState() = default;
FakeIpcServer::TestState::~TestState() = default;
FakeIpcServer::FakeIpcServer(TestState* test_state) : … { … }
FakeIpcServer::~FakeIpcServer() = default;
void FakeIpcServer::StartServer() { … }
void FakeIpcServer::StopServer() { … }
void FakeIpcServer::Close(mojo::ReceiverId id) { … }
void FakeIpcServer::set_disconnect_handler(base::RepeatingClosure handler) { … }
mojo::ReceiverId FakeIpcServer::current_receiver() const { … }
base::ProcessId FakeIpcServer::current_peer_pid() const { … }
}