OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/client/plugin/delegating_signal_strategy.h" | 5 #include "remoting/client/plugin/delegating_signal_strategy.h" |
6 | 6 |
7 #include "base/rand_util.h" | 7 #include "base/rand_util.h" |
8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
9 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h" | 9 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" |
10 | 10 |
11 namespace remoting { | 11 namespace remoting { |
12 | 12 |
13 DelegatingSignalStrategy::DelegatingSignalStrategy( | 13 DelegatingSignalStrategy::DelegatingSignalStrategy( |
14 std::string local_jid, | 14 std::string local_jid, |
15 const SendIqCallback& send_iq_callback) | 15 const SendIqCallback& send_iq_callback) |
16 : local_jid_(local_jid), | 16 : local_jid_(local_jid), |
17 send_iq_callback_(send_iq_callback) { | 17 send_iq_callback_(send_iq_callback) { |
18 } | 18 } |
19 | 19 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 bool DelegatingSignalStrategy::SendStanza(scoped_ptr<buzz::XmlElement> stanza) { | 64 bool DelegatingSignalStrategy::SendStanza(scoped_ptr<buzz::XmlElement> stanza) { |
65 send_iq_callback_.Run(stanza->Str()); | 65 send_iq_callback_.Run(stanza->Str()); |
66 return true; | 66 return true; |
67 } | 67 } |
68 | 68 |
69 std::string DelegatingSignalStrategy::GetNextId() { | 69 std::string DelegatingSignalStrategy::GetNextId() { |
70 return base::Uint64ToString(base::RandUint64()); | 70 return base::Uint64ToString(base::RandUint64()); |
71 } | 71 } |
72 | 72 |
73 } // namespace remoting | 73 } // namespace remoting |
OLD | NEW |