| Index: remoting/protocol/secure_channel_factory.h
|
| diff --git a/remoting/protocol/secure_channel_factory.h b/remoting/protocol/secure_channel_factory.h
|
| index f10ef6f2760c706d68a4a6daf351ce9bb2c45260..bb0a3491df2771fa8a0738607431b5ec481fe8c4 100644
|
| --- a/remoting/protocol/secure_channel_factory.h
|
| +++ b/remoting/protocol/secure_channel_factory.h
|
| @@ -27,12 +27,12 @@ class SecureChannelFactory : public StreamChannelFactory {
|
| // Both parameters must outlive the object.
|
| SecureChannelFactory(StreamChannelFactory* channel_factory,
|
| Authenticator* authenticator);
|
| - virtual ~SecureChannelFactory();
|
| + ~SecureChannelFactory() 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, ChannelAuthenticator*> AuthenticatorMap;
|
|
|