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

Unified Diff: webrtc/libjingle/xmpp/xmppthread.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/libjingle/xmpp/xmpppump.cc ('k') | webrtc/media/base/fakenetworkinterface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/libjingle/xmpp/xmppthread.cc
diff --git a/webrtc/libjingle/xmpp/xmppthread.cc b/webrtc/libjingle/xmpp/xmppthread.cc
index f492cdf6c4aa5644d5ef785e8fa8d7b6aa2ade35..0fd5002d629fd1d39bc7a1e9ffbad905278f1e49 100644
--- a/webrtc/libjingle/xmpp/xmppthread.cc
+++ b/webrtc/libjingle/xmpp/xmppthread.cc
@@ -42,11 +42,11 @@ void XmppThread::ProcessMessages(int cms) {
}
void XmppThread::Login(const buzz::XmppClientSettings& xcs) {
- Post(this, MSG_LOGIN, new LoginData(xcs));
+ Post(RTC_FROM_HERE, this, MSG_LOGIN, new LoginData(xcs));
}
void XmppThread::Disconnect() {
- Post(this, MSG_DISCONNECT);
+ Post(RTC_FROM_HERE, this, MSG_DISCONNECT);
}
void XmppThread::OnStateChange(buzz::XmppEngine::State state) {
« no previous file with comments | « webrtc/libjingle/xmpp/xmpppump.cc ('k') | webrtc/media/base/fakenetworkinterface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698