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

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

Issue 390983003: Remove remoting/jingle_glue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « remoting/signaling/jingle_info_request.h ('k') | remoting/signaling/log_to_server.h » ('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 (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/jingle_glue/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/jingle_glue/iq_sender.h" 13 #include "remoting/signaling/iq_sender.h"
14 #include "third_party/libjingle/source/talk/base/socketaddress.h" 14 #include "third_party/libjingle/source/talk/base/socketaddress.h"
15 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h" 15 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
16 #include "third_party/libjingle/source/talk/xmpp/constants.h" 16 #include "third_party/libjingle/source/talk/xmpp/constants.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) {
(...skipping 71 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/jingle_info_request.h ('k') | remoting/signaling/log_to_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698