| 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 8895b9172d1d53814f47748d561bf73760997b76..9602ab2e092dc49be0894f1c91edbbd346254597 100644
|
| --- a/webrtc/system_wrappers/source/tick_util.cc
|
| +++ b/webrtc/system_wrappers/source/tick_util.cc
|
| @@ -75,8 +75,8 @@ int64_t TickTime::QueryOsForTicks() {
|
| // Recommended by Apple's QA1398.
|
| kern_return_t retval = mach_timebase_info(&timebase);
|
| if (retval != KERN_SUCCESS) {
|
| - // TODO(wu): Implement CHECK similar to chrome for all the platforms.
|
| - // Then replace this with a CHECK(retval == KERN_SUCCESS);
|
| + // TODO(wu): Implement RTC_CHECK for all the platforms. Then replace this
|
| + // with a RTC_CHECK_EQ(retval, KERN_SUCCESS);
|
| #ifndef WEBRTC_IOS
|
| asm("int3");
|
| #else
|
|
|