// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IPCZ_SRC_TEST_TEST_TRANSPORT_LISTENER_H_ #define IPCZ_SRC_TEST_TEST_TRANSPORT_LISTENER_H_ #include <functional> #include <string_view> #include "ipcz/driver_transport.h" #include "util/ref_counted.h" namespace ipcz::test { // Helper for tests to conveniently listen for incoming messages on a driver // transport. class TestTransportListener { … }; } // namespace ipcz::test #endif // IPCZ_SRC_TEST_TEST_TRANSPORT_LISTENER_H_