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

Unified Diff: webrtc/base/messagequeue.cc

Issue 1982733002: Re-enabling socket tests that were previously flaky. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removing debug logging and adding IPv6 check for more tests 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
« no previous file with comments | « no previous file | webrtc/base/nethelpers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/messagequeue.cc
diff --git a/webrtc/base/messagequeue.cc b/webrtc/base/messagequeue.cc
index e8b5bf5bc1f4836b91c1fddef30aad2fa071d6f1..d8479530e08aff5b06a0d302b4455000e3e872a2 100644
--- a/webrtc/base/messagequeue.cc
+++ b/webrtc/base/messagequeue.cc
@@ -353,7 +353,8 @@ void MessageQueue::PostAt(int64_t tstamp,
MessageHandler* phandler,
uint32_t id,
MessageData* pdata) {
- return DoDelayPost(TimeUntil(tstamp), tstamp, phandler, id, pdata);
+ return DoDelayPost(static_cast<int>(TimeUntil(tstamp)), tstamp, phandler, id,
pthatcher1 2016/05/19 18:05:39 Could make DelayedMessage.cmsDelay_ an int64_t.
Taylor Brandstetter 2016/05/19 18:12:34 Done.
+ pdata);
}
void MessageQueue::DoDelayPost(int cmsDelay,
« no previous file with comments | « no previous file | webrtc/base/nethelpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698