// 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. // NetworkListManager interface is introduced to enable unit test on // IpcNetworkManager such that it doesn't depend on implementation of // P2PSocketDispatcher. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_P2P_NETWORK_LIST_MANAGER_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_P2P_NETWORK_LIST_MANAGER_H_ #include "third_party/blink/renderer/platform/heap/garbage_collected.h" #include "third_party/blink/renderer/platform/platform_export.h" namespace blink { class NetworkListObserver; // TODO(crbug.com/787254): Verify whether this abstract class is still // needed now that its Clients have all switched to Blink. class PLATFORM_EXPORT NetworkListManager : public GarbageCollectedMixin { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_P2P_NETWORK_LIST_MANAGER_H_