| Index: remoting/protocol/data_channel_manager.cc
|
| diff --git a/remoting/protocol/data_channel_manager.cc b/remoting/protocol/data_channel_manager.cc
|
| index c8f0782f38dafcef4d286a3b5bc5ed3d331bf49c..aa2914ed5ce4849f479a49ca0dfcbeccf00e74ab 100644
|
| --- a/remoting/protocol/data_channel_manager.cc
|
| +++ b/remoting/protocol/data_channel_manager.cc
|
| @@ -20,7 +20,7 @@ void DataChannelManager::RegisterCreateHandlerCallback(
|
| CreateHandlerCallback constructor) {
|
| DCHECK(!prefix.empty());
|
| DCHECK(constructor);
|
| - constructors_.push_back(std::make_pair(prefix, constructor));
|
| + constructors_.push_back(std::make_pair(prefix, std::move(constructor)));
|
| }
|
|
|
| bool DataChannelManager::OnIncomingDataChannel(
|
|
|