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

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

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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/host/screen_recorder.cc ('k') | remoting/protocol/client_control_dispatcher.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/jingle_glue/jingle_info_request.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/task.h"
9 #include "base/message_loop.h" 8 #include "base/message_loop.h"
10 #include "base/stl_util.h" 9 #include "base/stl_util.h"
11 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
12 #include "net/base/net_util.h" 11 #include "net/base/net_util.h"
13 #include "remoting/jingle_glue/iq_sender.h" 12 #include "remoting/jingle_glue/iq_sender.h"
14 #include "third_party/libjingle/source/talk/base/socketaddress.h" 13 #include "third_party/libjingle/source/talk/base/socketaddress.h"
15 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h" 14 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
16 #include "third_party/libjingle/source/talk/xmpp/constants.h" 15 #include "third_party/libjingle/source/talk/xmpp/constants.h"
17 16
18 namespace remoting { 17 namespace remoting {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 std::string host = server->Attr(buzz::QN_JINGLE_INFO_HOST); 74 std::string host = server->Attr(buzz::QN_JINGLE_INFO_HOST);
76 if (host != buzz::STR_EMPTY) 75 if (host != buzz::STR_EMPTY)
77 relay_hosts.push_back(host); 76 relay_hosts.push_back(host);
78 } 77 }
79 } 78 }
80 79
81 on_jingle_info_cb_.Run(relay_token, relay_hosts, stun_hosts); 80 on_jingle_info_cb_.Run(relay_token, relay_hosts, stun_hosts);
82 } 81 }
83 82
84 } // namespace remoting 83 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/screen_recorder.cc ('k') | remoting/protocol/client_control_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698