| Index: webrtc/system_wrappers/source/tick_util.cc
|
| diff --git a/webrtc/system_wrappers/source/tick_util.cc b/webrtc/system_wrappers/source/tick_util.cc
|
| index 8d942894172ffb447ba6fa39880b73a172321268..c02b5314a4f3b0e634b14e95b66d6c7b0f71b738 100644
|
| --- a/webrtc/system_wrappers/source/tick_util.cc
|
| +++ b/webrtc/system_wrappers/source/tick_util.cc
|
| @@ -106,12 +106,7 @@ int64_t TickTime::QueryOsForTicks() {
|
| return now + (num_wrap_time_get_time << 32);
|
| #elif defined(WEBRTC_LINUX)
|
| struct timespec ts;
|
| - // TODO(wu): Remove CLOCK_REALTIME implementation.
|
| -#ifdef WEBRTC_CLOCK_TYPE_REALTIME
|
| - clock_gettime(CLOCK_REALTIME, &ts);
|
| -#else
|
| clock_gettime(CLOCK_MONOTONIC, &ts);
|
| -#endif
|
| return 1000000000LL * ts.tv_sec + ts.tv_nsec;
|
| #elif defined(WEBRTC_MAC)
|
| // Return absolute time as an offset from the first call to this function, so
|
|
|