// 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. #ifndef REMOTING_PROTOCOL_STREAM_PACKET_PROCESSOR_H_ #define REMOTING_PROTOCOL_STREAM_PACKET_PROCESSOR_H_ #include <stdint.h> #include "base/memory/scoped_refptr.h" namespace net { class IOBufferWithSize; } // namespace net namespace rtc { struct PacketTimeUpdateParams; } // namespace rtc namespace remoting::protocol { // Helper class to process packets from and to the StreamPacketSocket. class StreamPacketProcessor { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_STREAM_PACKET_PROCESSOR_H_