| Index: remoting/protocol/me2me_host_authenticator_factory.cc
|
| diff --git a/remoting/protocol/me2me_host_authenticator_factory.cc b/remoting/protocol/me2me_host_authenticator_factory.cc
|
| index ad813f776dc6b741112a91505842f3d7b4198e92..c871b6c5cfafeabcb2f54f2b216bf2392f16765b 100644
|
| --- a/remoting/protocol/me2me_host_authenticator_factory.cc
|
| +++ b/remoting/protocol/me2me_host_authenticator_factory.cc
|
| @@ -34,9 +34,11 @@ class RejectingAuthenticator : public Authenticator {
|
| return INVALID_CREDENTIALS;
|
| }
|
|
|
| - virtual void ProcessMessage(const buzz::XmlElement* message) OVERRIDE {
|
| + virtual void ProcessMessage(const buzz::XmlElement* message,
|
| + const base::Closure& resume_callback) OVERRIDE {
|
| DCHECK_EQ(state_, WAITING_MESSAGE);
|
| state_ = REJECTED;
|
| + resume_callback.Run();
|
| }
|
|
|
| virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE {
|
|
|