| Index: remoting/protocol/pairing_authenticator_base.h
|
| diff --git a/remoting/protocol/pairing_authenticator_base.h b/remoting/protocol/pairing_authenticator_base.h
|
| index 14645c142776d56394041d8a3138a44fde090a7a..1b3104ea815c00142fa19f633cd15e4c92325acb 100644
|
| --- a/remoting/protocol/pairing_authenticator_base.h
|
| +++ b/remoting/protocol/pairing_authenticator_base.h
|
| @@ -53,19 +53,12 @@ class PairingAuthenticatorBase : public Authenticator {
|
| scoped_ptr<ChannelAuthenticator> CreateChannelAuthenticator() const override;
|
|
|
| protected:
|
| - static const buzz::StaticQName kPairingInfoTag;
|
| - static const buzz::StaticQName kClientIdAttribute;
|
| -
|
| // Create a Spake2 authenticator in the specified state, prompting the user
|
| // for the PIN first if necessary.
|
| virtual void CreateSpakeAuthenticatorWithPin(
|
| State initial_state,
|
| const base::Closure& resume_callback) = 0;
|
|
|
| - // Amend an authenticator message, for example to add client- or host-specific
|
| - // elements to it.
|
| - virtual void AddPairingElements(buzz::XmlElement* message) = 0;
|
| -
|
| // A non-fatal error message that derived classes should set in order to
|
| // cause the peer to be notified that pairing has failed and that it should
|
| // fall back on PIN authentication. This string need not be human-readable,
|
| @@ -81,7 +74,7 @@ class PairingAuthenticatorBase : public Authenticator {
|
| bool using_paired_secret_ = false;
|
|
|
| private:
|
| - // Helper methods for ProcessMessage and GetNextMessage
|
| + // Helper methods for ProcessMessage() and GetNextMessage().
|
| void MaybeAddErrorMessage(buzz::XmlElement* message);
|
| bool HasErrorMessage(const buzz::XmlElement* message) const;
|
| void CheckForFailedSpakeExchange(const base::Closure& resume_callback);
|
|
|