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 4b07d83b0316d0448e0f20e67968a51f50bc1ec5..59267083edb670db6741d8d5b4ec622657cc1653 100644 |
--- a/remoting/protocol/me2me_host_authenticator_factory.cc |
+++ b/remoting/protocol/me2me_host_authenticator_factory.cc |
@@ -47,6 +47,11 @@ class RejectingAuthenticator : public Authenticator { |
return nullptr; |
} |
+ const std::string& GetAuthKey() const override { |
+ NOTREACHED(); |
+ return auth_key_; |
+ }; |
+ |
scoped_ptr<ChannelAuthenticator> CreateChannelAuthenticator() const override { |
NOTREACHED(); |
return nullptr; |
@@ -54,6 +59,7 @@ class RejectingAuthenticator : public Authenticator { |
protected: |
State state_; |
+ std::string auth_key_; |
}; |
} // namespace |