| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/protocol/it2me_host_authenticator_factory.h" | 5 #include "remoting/protocol/it2me_host_authenticator_factory.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "remoting/base/rsa_key_pair.h" | 8 #include "remoting/base/rsa_key_pair.h" |
| 9 #include "remoting/protocol/negotiating_host_authenticator.h" | 9 #include "remoting/protocol/negotiating_host_authenticator.h" |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 } | 21 } |
| 22 | 22 |
| 23 It2MeHostAuthenticatorFactory::~It2MeHostAuthenticatorFactory() { | 23 It2MeHostAuthenticatorFactory::~It2MeHostAuthenticatorFactory() { |
| 24 } | 24 } |
| 25 | 25 |
| 26 scoped_ptr<Authenticator> It2MeHostAuthenticatorFactory::CreateAuthenticator( | 26 scoped_ptr<Authenticator> It2MeHostAuthenticatorFactory::CreateAuthenticator( |
| 27 const std::string& local_jid, | 27 const std::string& local_jid, |
| 28 const std::string& remote_jid, | 28 const std::string& remote_jid, |
| 29 const buzz::XmlElement* first_message) { | 29 const buzz::XmlElement* first_message) { |
| 30 return NegotiatingHostAuthenticator::CreateWithSharedSecret( | 30 return NegotiatingHostAuthenticator::CreateWithSharedSecret( |
| 31 local_cert_, key_pair_, shared_secret_, AuthenticationMethod::NONE); | 31 local_cert_, key_pair_, shared_secret_, AuthenticationMethod::NONE, NULL); |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace protocol | 34 } // namespace protocol |
| 35 } // namespace remoting | 35 } // namespace remoting |
| OLD | NEW |