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

Unified Diff: webrtc/base/worker.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/base/worker.cc
diff --git a/webrtc/base/worker.cc b/webrtc/base/worker.cc
index 1b48b9b1d8b8dedb3f3883bc281a35015c6f9f45..3ee42628a9198b5ad82aff8ead071dcf2ff40e9c 100644
--- a/webrtc/base/worker.cc
+++ b/webrtc/base/worker.cc
@@ -63,7 +63,7 @@ bool Worker::StopWork() {
void Worker::HaveWork() {
ASSERT(worker_thread_ != NULL);
- worker_thread_->Post(this, MSG_HAVEWORK);
+ worker_thread_->Post(FROM_HERE, this, MSG_HAVEWORK);
}
void Worker::OnMessage(rtc::Message *msg) {

Powered by Google App Engine
This is Rietveld 408576698