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

Unified Diff: webrtc/libjingle/xmpp/pingtask.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: Add TODO for timestamp. 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 | « webrtc/libjingle/xmpp/pingtask.h ('k') | webrtc/libjingle/xmpp/xmpppump.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/libjingle/xmpp/pingtask.cc
diff --git a/webrtc/libjingle/xmpp/pingtask.cc b/webrtc/libjingle/xmpp/pingtask.cc
index 3df7b8570aedc11dc0fb8daa7113f5229707d33c..ad4566a51c3b7814825525bf0c74d6e981b4149e 100644
--- a/webrtc/libjingle/xmpp/pingtask.cc
+++ b/webrtc/libjingle/xmpp/pingtask.cc
@@ -57,7 +57,7 @@ int PingTask::ProcessStart() {
ping_response_deadline_ = 0;
}
- uint32_t now = rtc::Time();
+ int64_t now = rtc::TimeMillis();
// If the ping timed out, signal.
if (ping_response_deadline_ != 0 && now >= ping_response_deadline_) {
« no previous file with comments | « webrtc/libjingle/xmpp/pingtask.h ('k') | webrtc/libjingle/xmpp/xmpppump.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698