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

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

Issue 2443903004: Add xmllite and xmpp sources to third_party/ (Closed)
Patch Set: Explicitly use webrtc_overrides/webrtc/base/logging.h Created 3 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
« no previous file with comments | « remoting/signaling/fake_signal_strategy.cc ('k') | remoting/signaling/iq_sender_unittest.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/iq_sender.h" 5 #include "remoting/signaling/iq_sender.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/callback_helpers.h" 11 #include "base/callback_helpers.h"
12 #include "base/location.h" 12 #include "base/location.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/single_thread_task_runner.h" 14 #include "base/single_thread_task_runner.h"
15 #include "base/strings/string_number_conversions.h" 15 #include "base/strings/string_number_conversions.h"
16 #include "base/threading/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
17 #include "base/time/time.h" 17 #include "base/time/time.h"
18 #include "remoting/signaling/jid_util.h" 18 #include "remoting/signaling/jid_util.h"
19 #include "remoting/signaling/signal_strategy.h" 19 #include "remoting/signaling/signal_strategy.h"
20 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" 20 #include "third_party/libjingle_xmpp/xmllite/xmlelement.h"
21 #include "third_party/webrtc/libjingle/xmpp/constants.h" 21 #include "third_party/libjingle_xmpp/xmpp/constants.h"
22 22
23 namespace remoting { 23 namespace remoting {
24 24
25 // static 25 // static
26 std::unique_ptr<buzz::XmlElement> IqSender::MakeIqStanza( 26 std::unique_ptr<buzz::XmlElement> IqSender::MakeIqStanza(
27 const std::string& type, 27 const std::string& type,
28 const std::string& addressee, 28 const std::string& addressee,
29 std::unique_ptr<buzz::XmlElement> iq_body) { 29 std::unique_ptr<buzz::XmlElement> iq_body) {
30 std::unique_ptr<buzz::XmlElement> stanza(new buzz::XmlElement(buzz::QN_IQ)); 30 std::unique_ptr<buzz::XmlElement> stanza(new buzz::XmlElement(buzz::QN_IQ));
31 stanza->AddAttr(buzz::QN_TYPE, type); 31 stanza->AddAttr(buzz::QN_TYPE, type);
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 base::ThreadTaskRunnerHandle::Get()->PostTask( 162 base::ThreadTaskRunnerHandle::Get()->PostTask(
163 FROM_HERE, base::Bind(&IqRequest::DeliverResponse, AsWeakPtr(), 163 FROM_HERE, base::Bind(&IqRequest::DeliverResponse, AsWeakPtr(),
164 base::Passed(&stanza_copy))); 164 base::Passed(&stanza_copy)));
165 } 165 }
166 166
167 void IqRequest::DeliverResponse(std::unique_ptr<buzz::XmlElement> stanza) { 167 void IqRequest::DeliverResponse(std::unique_ptr<buzz::XmlElement> stanza) {
168 CallCallback(stanza.get()); 168 CallCallback(stanza.get());
169 } 169 }
170 170
171 } // namespace remoting 171 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/signaling/fake_signal_strategy.cc ('k') | remoting/signaling/iq_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698