| 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 #ifndef REMOTING_HOST_REGISTER_SUPPORT_HOST_REQUEST_H_ | 5 #ifndef REMOTING_HOST_REGISTER_SUPPORT_HOST_REQUEST_H_ |
| 6 #define REMOTING_HOST_REGISTER_SUPPORT_HOST_REQUEST_H_ | 6 #define REMOTING_HOST_REGISTER_SUPPORT_HOST_REQUEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "remoting/base/rsa_key_pair.h" | 14 #include "remoting/base/rsa_key_pair.h" |
| 14 #include "remoting/signaling/signal_strategy.h" | 15 #include "remoting/signaling/signal_strategy.h" |
| 15 #include "testing/gtest/include/gtest/gtest_prod.h" | 16 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 16 | 17 |
| 17 namespace buzz { | 18 namespace buzz { |
| 18 class XmlElement; | 19 class XmlElement; |
| 19 } // namespace buzz | 20 } // namespace buzz |
| 20 | 21 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 81 |
| 81 scoped_ptr<IqSender> iq_sender_; | 82 scoped_ptr<IqSender> iq_sender_; |
| 82 scoped_ptr<IqRequest> request_; | 83 scoped_ptr<IqRequest> request_; |
| 83 | 84 |
| 84 DISALLOW_COPY_AND_ASSIGN(RegisterSupportHostRequest); | 85 DISALLOW_COPY_AND_ASSIGN(RegisterSupportHostRequest); |
| 85 }; | 86 }; |
| 86 | 87 |
| 87 } // namespace remoting | 88 } // namespace remoting |
| 88 | 89 |
| 89 #endif // REMOTING_HOST_REGISTER_SUPPORT_HOST_REQUEST_H_ | 90 #endif // REMOTING_HOST_REGISTER_SUPPORT_HOST_REQUEST_H_ |
| OLD | NEW |