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

Unified Diff: webrtc/base/stream.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/stream.cc
diff --git a/webrtc/base/stream.cc b/webrtc/base/stream.cc
index 1ddff1cf0a629c2538960b2c2d5399d16eb10c3c..4edfc52c0cca930c9700db8ac685568289192f34 100644
--- a/webrtc/base/stream.cc
+++ b/webrtc/base/stream.cc
@@ -94,7 +94,7 @@ StreamResult StreamInterface::ReadLine(std::string* line) {
}
void StreamInterface::PostEvent(Thread* t, int events, int err) {
- t->Post(this, MSG_POST_EVENT, new StreamEventData(events, err));
+ t->Post(FROM_HERE, this, MSG_POST_EVENT, new StreamEventData(events, err));
}
void StreamInterface::PostEvent(int events, int err) {

Powered by Google App Engine
This is Rietveld 408576698