| Index: remoting/protocol/pseudotcp_channel_factory.h
|
| diff --git a/remoting/protocol/pseudotcp_channel_factory.h b/remoting/protocol/pseudotcp_channel_factory.h
|
| index d79437c1356eb3b05a9b851bd06255eea8aa3edc..884594026e12f5dc51977c44ae7329135571c15f 100644
|
| --- a/remoting/protocol/pseudotcp_channel_factory.h
|
| +++ b/remoting/protocol/pseudotcp_channel_factory.h
|
| @@ -22,12 +22,12 @@ class PseudoTcpChannelFactory : public StreamChannelFactory {
|
| // |datagram_channel_factory| must outlive this object.
|
| explicit PseudoTcpChannelFactory(
|
| DatagramChannelFactory* datagram_channel_factory);
|
| - virtual ~PseudoTcpChannelFactory();
|
| + ~PseudoTcpChannelFactory() override;
|
|
|
| // StreamChannelFactory interface.
|
| - virtual void CreateChannel(const std::string& name,
|
| - const ChannelCreatedCallback& callback) override;
|
| - virtual void CancelChannelCreation(const std::string& name) override;
|
| + void CreateChannel(const std::string& name,
|
| + const ChannelCreatedCallback& callback) override;
|
| + void CancelChannelCreation(const std::string& name) override;
|
|
|
| private:
|
| typedef std::map<std::string, net::StreamSocket*> PendingSocketsMap;
|
|
|