// Copyright 2014 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_NETWORK_MANAGER_H_ #define REMOTING_TEST_FAKE_NETWORK_MANAGER_H_ #include <memory> #include "base/memory/weak_ptr.h" #include "third_party/webrtc/rtc_base/network.h" namespace remoting { // FakeNetworkManager always returns one interface with the IP address // specified in the constructor. class FakeNetworkManager : public rtc::NetworkManager { … }; } // namespace remoting #endif // REMOTING_TEST_FAKE_NETWORK_MANAGER_H_