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

Unified Diff: webrtc/base/dbus.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/base/criticalsection_unittest.cc ('k') | webrtc/base/fakenetwork.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/dbus.cc
diff --git a/webrtc/base/dbus.cc b/webrtc/base/dbus.cc
index 312bad05099c956083033e105594936ea22ecb8e..d4fb5369838e8910e66d15be305e65671f36cc8a 100644
--- a/webrtc/base/dbus.cc
+++ b/webrtc/base/dbus.cc
@@ -101,7 +101,8 @@ DBusHandlerResult DBusSigFilter::DBusCallback(DBusConnection *dbus_conn,
// Posts a message to caller thread.
DBusHandlerResult DBusSigFilter::Callback(DBusMessage *message) {
if (caller_thread_) {
- caller_thread_->Post(this, DSM_SIGNAL, new DBusSigMessageData(message));
+ caller_thread_->Post(RTC_FROM_HERE, this, DSM_SIGNAL,
+ new DBusSigMessageData(message));
}
// Don't "eat" the message here. Let it pop up.
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
« no previous file with comments | « webrtc/base/criticalsection_unittest.cc ('k') | webrtc/base/fakenetwork.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698