// 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 CAST_STREAMING_PUBLIC_ENVIRONMENT_H_ #define CAST_STREAMING_PUBLIC_ENVIRONMENT_H_ #include <stdint.h> #include <functional> #include <memory> #include <vector> #include "cast/streaming/impl/statistics_collector.h" #include "platform/api/time.h" #include "platform/api/udp_socket.h" #include "platform/base/ip_address.h" #include "platform/base/span.h" namespace openscreen::cast { // Provides the common environment for operating system resources shared by // multiple components. class Environment : public UdpSocket::Client { … }; } // namespace openscreen::cast #endif // CAST_STREAMING_PUBLIC_ENVIRONMENT_H_