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

Unified Diff: webrtc/base/thread.cc

Issue 1835053002: Change default timestamp to 64 bits in all webrtc directories. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Address comments Created 4 years, 8 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/thread.cc
diff --git a/webrtc/base/thread.cc b/webrtc/base/thread.cc
index dc8ccdfd4dd1dafd958f487450e254bb7b901693..019a1ce105af7eca8bb54a725aacc29e80837fe7 100644
--- a/webrtc/base/thread.cc
+++ b/webrtc/base/thread.cc
@@ -459,7 +459,7 @@ void Thread::Clear(MessageHandler* phandler,
}
bool Thread::ProcessMessages(int cmsLoop) {
- uint32_t msEnd = (kForever == cmsLoop) ? 0 : TimeAfter(cmsLoop);
+ int64_t msEnd = (kForever == cmsLoop) ? 0 : TimeAfter(cmsLoop);
int cmsNext = cmsLoop;
while (true) {

Powered by Google App Engine
This is Rietveld 408576698