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

Unified Diff: webrtc/pc/channel.h

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/pc/channel.h
diff --git a/webrtc/pc/channel.h b/webrtc/pc/channel.h
index df75245f276d039b7af827f3470eda152a0c4e18..e2a9fcaa462e58d2acc82e085a9a27350863d0cd 100644
--- a/webrtc/pc/channel.h
+++ b/webrtc/pc/channel.h
@@ -309,7 +309,7 @@ class BaseChannel
// Helper function for invoking bool-returning methods on the worker thread.
template <class FunctorT>
bool InvokeOnWorker(const FunctorT& functor) {
- return worker_thread_->Invoke<bool>(functor);
+ return worker_thread_->Invoke<bool>(FROM_HERE, functor);
}
private:

Powered by Google App Engine
This is Rietveld 408576698