| Index: remoting/protocol/data_channel_manager.h
|
| diff --git a/remoting/protocol/data_channel_manager.h b/remoting/protocol/data_channel_manager.h
|
| index dfe3a0838c87e108cd7893f959656d171c1dccdc..32b0198b936347d9014800024b132bc59cce7a89 100644
|
| --- a/remoting/protocol/data_channel_manager.h
|
| +++ b/remoting/protocol/data_channel_manager.h
|
| @@ -24,8 +24,6 @@ class DataChannelManager final {
|
| const std::string& name,
|
| std::unique_ptr<MessagePipe> pipe)>;
|
|
|
| - using NameCallbackPair = std::pair<std::string, CreateHandlerCallback>;
|
| -
|
| DataChannelManager();
|
| ~DataChannelManager();
|
|
|
| @@ -40,7 +38,7 @@ class DataChannelManager final {
|
| std::unique_ptr<MessagePipe> pipe);
|
|
|
| private:
|
| - std::vector<NameCallbackPair> constructors_;
|
| + std::vector<std::pair<std::string, CreateHandlerCallback>> constructors_;
|
| };
|
|
|
| } // namespace protocol
|
|
|