Index: remoting/protocol/fake_authenticator.h |
diff --git a/remoting/protocol/fake_authenticator.h b/remoting/protocol/fake_authenticator.h |
index 3975b8a89781042d3906a9ae75b1b9191092f5f2..6c153df0bb1f71f8beff56c6686042b9b5a42a4e 100644 |
--- a/remoting/protocol/fake_authenticator.h |
+++ b/remoting/protocol/fake_authenticator.h |
@@ -70,6 +70,7 @@ class FakeAuthenticator : public Authenticator { |
void ProcessMessage(const buzz::XmlElement* message, |
const base::Closure& resume_callback) override; |
scoped_ptr<buzz::XmlElement> GetNextMessage() override; |
+ const std::string& GetAuthKey() const override; |
scoped_ptr<ChannelAuthenticator> CreateChannelAuthenticator() const override; |
protected: |
@@ -84,6 +85,8 @@ class FakeAuthenticator : public Authenticator { |
// returns true. Default to 0. |
int messages_till_started_; |
+ std::string auth_key_; |
+ |
DISALLOW_COPY_AND_ASSIGN(FakeAuthenticator); |
}; |