/* * Copyright (c) 2022, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace WebDriver { WebContentConnection::WebContentConnection(NonnullOwnPtr socket) : IPC::ConnectionFromClient(*this, move(socket), 1) { } void WebContentConnection::die() { if (on_close) on_close(); } }