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

@ -35,11 +35,11 @@ typedef uint32_t TimeStamp;
uint32_t Time32();
// Returns the current time in milliseconds in 64 bits.
int64_t Time64();
int64_t TimeMillis();
// Returns the current time in milliseconds.
// TODO(honghaiz): Returns Time64 once majority of the webrtc code migrates to
// 64-bit timestamp.
// TODO(honghaiz): Change to return TimeMillis() once majority of the webrtc
// code migrates to 64-bit timestamp.
inline uint32_t Time() {
return Time32();
}