Rename rtc::Time64 --> rtc::TimeMillis.

In the discussion on https://codereview.webrtc.org/1888593004/, a more
decriptive name was suggested for Time64.

BUG=webrtc:5740

Review-Url: https://codereview.webrtc.org/1923213002
Cr-Commit-Position: refs/heads/master@{#12594}
This commit is contained in:
nisse
2016-05-02 08:18:55 -07:00
committed by Commit bot
parent bc75d97c32
commit 1bffc1d1a4
17 changed files with 40 additions and 40 deletions

View File

@ -194,7 +194,7 @@ const StunMessage* StunRequest::msg() const {
}
int StunRequest::Elapsed() const {
return static_cast<int>(rtc::Time64() - tstamp_);
return static_cast<int>(rtc::TimeMillis() - tstamp_);
}
@ -213,7 +213,7 @@ void StunRequest::OnMessage(rtc::Message* pmsg) {
return;
}
tstamp_ = rtc::Time64();
tstamp_ = rtc::TimeMillis();
rtc::ByteBufferWriter buf;
msg_->Write(&buf);