| Index: remoting/protocol/negotiating_host_authenticator.h
|
| diff --git a/remoting/protocol/negotiating_host_authenticator.h b/remoting/protocol/negotiating_host_authenticator.h
|
| index 8a8217c79ec4cc0c66767529f20fff8bc4e30752..411cdb1ef2278d96d401b60b1569aff5ee457346 100644
|
| --- a/remoting/protocol/negotiating_host_authenticator.h
|
| +++ b/remoting/protocol/negotiating_host_authenticator.h
|
| @@ -27,7 +27,7 @@ namespace protocol {
|
| // See comments in negotiating_authenticator_base.h for a general explanation.
|
| class NegotiatingHostAuthenticator : public NegotiatingAuthenticatorBase {
|
| public:
|
| - virtual ~NegotiatingHostAuthenticator();
|
| + ~NegotiatingHostAuthenticator() override;
|
|
|
| // Creates a host authenticator, using a fixed shared secret/PIN hash.
|
| // If |pairing_registry| is non-NULL then the Spake2Pair method will
|
| @@ -46,9 +46,9 @@ class NegotiatingHostAuthenticator : public NegotiatingAuthenticatorBase {
|
| scoped_ptr<TokenValidator> token_validator);
|
|
|
| // Overriden from Authenticator.
|
| - virtual void ProcessMessage(const buzz::XmlElement* message,
|
| - const base::Closure& resume_callback) override;
|
| - virtual scoped_ptr<buzz::XmlElement> GetNextMessage() override;
|
| + void ProcessMessage(const buzz::XmlElement* message,
|
| + const base::Closure& resume_callback) override;
|
| + scoped_ptr<buzz::XmlElement> GetNextMessage() override;
|
|
|
| private:
|
| NegotiatingHostAuthenticator(
|
|
|