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

Side by Side Diff: webrtc/libjingle/xmpp/xmpppump.cc

Issue 2019423006: Adding more detail to MessageQueue::Dispatch logging. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixing one more place where RTC_FROM_HERE wasn't used. Created 4 years, 6 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 | « webrtc/libjingle/xmpp/pingtask.cc ('k') | webrtc/libjingle/xmpp/xmppthread.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 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 28 matching lines...) Expand all
39 39
40 void XmppPump::OnStateChange(buzz::XmppEngine::State state) { 40 void XmppPump::OnStateChange(buzz::XmppEngine::State state) {
41 if (state_ == state) 41 if (state_ == state)
42 return; 42 return;
43 state_ = state; 43 state_ = state;
44 if (notify_ != NULL) 44 if (notify_ != NULL)
45 notify_->OnStateChange(state); 45 notify_->OnStateChange(state);
46 } 46 }
47 47
48 void XmppPump::WakeTasks() { 48 void XmppPump::WakeTasks() {
49 rtc::Thread::Current()->Post(this); 49 rtc::Thread::Current()->Post(RTC_FROM_HERE, this);
50 } 50 }
51 51
52 int64_t XmppPump::CurrentTime() { 52 int64_t XmppPump::CurrentTime() {
53 return (int64_t)rtc::TimeMillis(); 53 return (int64_t)rtc::TimeMillis();
54 } 54 }
55 55
56 void XmppPump::OnMessage(rtc::Message *pmsg) { 56 void XmppPump::OnMessage(rtc::Message *pmsg) {
57 RunTasks(); 57 RunTasks();
58 } 58 }
59 59
60 buzz::XmppReturnStatus XmppPump::SendStanza(const buzz::XmlElement *stanza) { 60 buzz::XmppReturnStatus XmppPump::SendStanza(const buzz::XmlElement *stanza) {
61 if (!AllChildrenDone()) 61 if (!AllChildrenDone())
62 return client_->SendStanza(stanza); 62 return client_->SendStanza(stanza);
63 return buzz::XMPP_RETURN_BADSTATE; 63 return buzz::XMPP_RETURN_BADSTATE;
64 } 64 }
65 65
66 } // namespace buzz 66 } // namespace buzz
67 67
OLDNEW
« no previous file with comments | « webrtc/libjingle/xmpp/pingtask.cc ('k') | webrtc/libjingle/xmpp/xmppthread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698