Index: remoting/protocol/v2_authenticator.h |
diff --git a/remoting/protocol/v2_authenticator.h b/remoting/protocol/v2_authenticator.h |
index 6013995d881d6602627f134862bd4606a5344d18..e6fcab44a239c4dcec930347b8170bd7024b2df5 100644 |
--- a/remoting/protocol/v2_authenticator.h |
+++ b/remoting/protocol/v2_authenticator.h |
@@ -37,7 +37,8 @@ class V2Authenticator : public Authenticator { |
// Authenticator interface. |
virtual State state() const OVERRIDE; |
virtual RejectionReason rejection_reason() const OVERRIDE; |
- virtual void ProcessMessage(const buzz::XmlElement* message) OVERRIDE; |
+ virtual void ProcessMessage(const buzz::XmlElement* message, |
+ const base::Closure& resume_callback) OVERRIDE; |
Sergey Ulanov
2013/03/07 21:20:41
I think this was in a separate CL that you've alre
rmsousa
2013/03/20 01:30:16
Done.
|
virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE; |
virtual scoped_ptr<ChannelAuthenticator> |
CreateChannelAuthenticator() const OVERRIDE; |
@@ -49,6 +50,8 @@ class V2Authenticator : public Authenticator { |
const std::string& shared_secret, |
State initial_state); |
+ virtual void ProcessMessageInternal(const buzz::XmlElement* message); |
+ |
bool is_host_side() const; |
// Used only for host authenticators. |