Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: remoting/signaling/jingle_info_request.cc

Issue 545003004: Roll WebRTC 7011:7046 libjingle: 7007:7045 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/signaling/iq_sender_unittest.cc ('k') | remoting/signaling/log_to_server.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/signaling/jingle_info_request.h" 5 #include "remoting/signaling/jingle_info_request.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "base/time/time.h" 11 #include "base/time/time.h"
12 #include "net/base/net_util.h" 12 #include "net/base/net_util.h"
13 #include "remoting/signaling/iq_sender.h" 13 #include "remoting/signaling/iq_sender.h"
14 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
15 #include "third_party/libjingle/source/talk/xmpp/constants.h" 14 #include "third_party/libjingle/source/talk/xmpp/constants.h"
16 #include "third_party/webrtc/base/socketaddress.h" 15 #include "third_party/webrtc/base/socketaddress.h"
16 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h"
17 17
18 namespace remoting { 18 namespace remoting {
19 19
20 const int kRequestTimeoutSeconds = 5; 20 const int kRequestTimeoutSeconds = 5;
21 21
22 JingleInfoRequest::JingleInfoRequest(SignalStrategy* signal_strategy) 22 JingleInfoRequest::JingleInfoRequest(SignalStrategy* signal_strategy)
23 : iq_sender_(signal_strategy) { 23 : iq_sender_(signal_strategy) {
24 } 24 }
25 25
26 JingleInfoRequest::~JingleInfoRequest() {} 26 JingleInfoRequest::~JingleInfoRequest() {}
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 std::string host = server->Attr(buzz::QN_JINGLE_INFO_HOST); 95 std::string host = server->Attr(buzz::QN_JINGLE_INFO_HOST);
96 if (host != buzz::STR_EMPTY) 96 if (host != buzz::STR_EMPTY)
97 relay_hosts.push_back(host); 97 relay_hosts.push_back(host);
98 } 98 }
99 } 99 }
100 100
101 on_jingle_info_cb_.Run(relay_token, relay_hosts, stun_hosts); 101 on_jingle_info_cb_.Run(relay_token, relay_hosts, stun_hosts);
102 } 102 }
103 103
104 } // namespace remoting 104 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/signaling/iq_sender_unittest.cc ('k') | remoting/signaling/log_to_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698