// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/openscreen_platform/network_context.h" NetworkContextGetter; namespace openscreen_platform { namespace { static NetworkContextGetter* GetInstance() { … } } // namespace void SetNetworkContextGetter(NetworkContextGetter network_context_getter) { … } void ClearNetworkContextGetter() { … } bool HasNetworkContextGetter() { … } network::mojom::NetworkContext* GetNetworkContext() { … } } // namespace openscreen_platform