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

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: Created 4 years, 7 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
Index: webrtc/libjingle/xmpp/xmppthread.cc
diff --git a/webrtc/libjingle/xmpp/xmppthread.cc b/webrtc/libjingle/xmpp/xmppthread.cc
index f492cdf6c4aa5644d5ef785e8fa8d7b6aa2ade35..9e299980926e5a08a6d48685115e52a4751d7933 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(FROM_HERE, this, MSG_LOGIN, new LoginData(xcs));
}
void XmppThread::Disconnect() {
- Post(this, MSG_DISCONNECT);
+ Post(FROM_HERE, this, MSG_DISCONNECT);
}
void XmppThread::OnStateChange(buzz::XmppEngine::State state) {

Powered by Google App Engine
This is Rietveld 408576698