 Chromium Code Reviews
 Chromium Code Reviews Issue 12316083:
  Move HostKeyPair into protocol::KeyPair.  (Closed) 
  Base URL: http://git.chromium.org/chromium/src.git@master
    
  
    Issue 12316083:
  Move HostKeyPair into protocol::KeyPair.  (Closed) 
  Base URL: http://git.chromium.org/chromium/src.git@master| Index: remoting/host/register_support_host_request.h | 
| diff --git a/remoting/host/register_support_host_request.h b/remoting/host/register_support_host_request.h | 
| index fd9758c8553c2a19eb6cc22fb147f44ae274dc57..66fa8c71a39351b5eb1bd3b597622ec0fb192730 100644 | 
| --- a/remoting/host/register_support_host_request.h | 
| +++ b/remoting/host/register_support_host_request.h | 
| @@ -11,7 +11,7 @@ | 
| #include "base/memory/ref_counted.h" | 
| #include "base/memory/scoped_ptr.h" | 
| #include "remoting/jingle_glue/signal_strategy.h" | 
| -#include "remoting/host/host_key_pair.h" | 
| +#include "remoting/protocol/key_pair.h" | 
| #include "testing/gtest/include/gtest/gtest_prod.h" | 
| class MessageLoop; | 
| @@ -49,7 +49,7 @@ class RegisterSupportHostRequest : public SignalStrategy::Listener { | 
| // TODO(sergeyu): This class should have timeout for the bot | 
| // response. | 
| RegisterSupportHostRequest(SignalStrategy* signal_strategy, | 
| - HostKeyPair* key_pair, | 
| + protocol::KeyPair* key_pair, | 
| 
Wez
2013/02/23 03:43:20
Now that we can copy, use scoped_ptr<> here?
 
rmsousa
2013/02/26 02:38:52
Done.
 | 
| const std::string& directory_bot_jid, | 
| const RegisterCallback& callback); | 
| virtual ~RegisterSupportHostRequest(); | 
| @@ -75,7 +75,7 @@ class RegisterSupportHostRequest : public SignalStrategy::Listener { | 
| bool success, const std::string& support_id, base::TimeDelta lifetime); | 
| SignalStrategy* signal_strategy_; | 
| - HostKeyPair* key_pair_; | 
| + protocol::KeyPair* key_pair_; | 
| std::string directory_bot_jid_; | 
| RegisterCallback callback_; |