// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_TEST_FAKE_ICE_CONNECTION_H_ #define REMOTING_TEST_FAKE_ICE_CONNECTION_H_ #include "remoting/protocol/channel_dispatcher_base.h" #include "remoting/protocol/ice_transport.h" namespace remoting { namespace test { class FakeIceConnection final : public protocol::IceTransport::EventHandler, public protocol::ChannelDispatcherBase::EventHandler { … }; } // namespace test } // namespace remoting #endif // REMOTING_TEST_FAKE_ICE_CONNECTION_H_