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:
@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user