// Copyright 2017 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_DATA_CHANNEL_MANAGER_H_ #define REMOTING_PROTOCOL_DATA_CHANNEL_MANAGER_H_ #include <memory> #include <string> #include <vector> #include "base/functional/callback.h" namespace remoting::protocol { class MessagePipe; // DataChannelManager helps to manage optional data channels. Consumers can // register a function to handle data from a named data channel. class DataChannelManager final { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_DATA_CHANNEL_MANAGER_H_