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

Unified Diff: webrtc/base/opensslstreamadapter.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/opensslstreamadapter.cc
diff --git a/webrtc/base/opensslstreamadapter.cc b/webrtc/base/opensslstreamadapter.cc
index abdf5e4834cdecaa6319766e4147d4ea713e525e..52b1566cbed56ea3a830566665d3204089436698 100644
--- a/webrtc/base/opensslstreamadapter.cc
+++ b/webrtc/base/opensslstreamadapter.cc
@@ -828,7 +828,8 @@ int OpenSSLStreamAdapter::ContinueSSL() {
if (DTLSv1_get_timeout(ssl_, &timeout)) {
int delay = timeout.tv_sec * 1000 + timeout.tv_usec/1000;
- Thread::Current()->PostDelayed(delay, this, MSG_TIMEOUT, 0);
+ Thread::Current()->PostDelayed(FROM_HERE, delay, this, MSG_TIMEOUT,
+ 0);
}
}
break;

Powered by Google App Engine
This is Rietveld 408576698