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

Unified Diff: webrtc/base/openssladapter.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/openssladapter.cc
diff --git a/webrtc/base/openssladapter.cc b/webrtc/base/openssladapter.cc
index 40c352d6436ef11a4cf2cb5fa6bd2bd83f278cce..575d64bab5aad46ff58faaa9859eda94125435df 100644
--- a/webrtc/base/openssladapter.cc
+++ b/webrtc/base/openssladapter.cc
@@ -404,7 +404,7 @@ OpenSSLAdapter::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