| Index: remoting/protocol/third_party_host_authenticator.h
|
| diff --git a/remoting/protocol/third_party_host_authenticator.h b/remoting/protocol/third_party_host_authenticator.h
|
| index 0ebc592574aa88d908ed81df0d5c33711e5677b0..ad683090768b54fea9dc39d88b8f93dd24ef5a30 100644
|
| --- a/remoting/protocol/third_party_host_authenticator.h
|
| +++ b/remoting/protocol/third_party_host_authenticator.h
|
| @@ -35,14 +35,13 @@ class ThirdPartyHostAuthenticator : public ThirdPartyAuthenticatorBase {
|
| ThirdPartyHostAuthenticator(const std::string& local_cert,
|
| scoped_refptr<RsaKeyPair> key_pair,
|
| scoped_ptr<TokenValidator> token_validator);
|
| - virtual ~ThirdPartyHostAuthenticator();
|
| + ~ThirdPartyHostAuthenticator() override;
|
|
|
| protected:
|
| // ThirdPartyAuthenticator implementation.
|
| - virtual void ProcessTokenMessage(
|
| - const buzz::XmlElement* message,
|
| - const base::Closure& resume_callback) override;
|
| - virtual void AddTokenElements(buzz::XmlElement* message) override;
|
| + void ProcessTokenMessage(const buzz::XmlElement* message,
|
| + const base::Closure& resume_callback) override;
|
| + void AddTokenElements(buzz::XmlElement* message) override;
|
|
|
| private:
|
| void OnThirdPartyTokenValidated(const buzz::XmlElement* message,
|
|
|