| Index: ui/events/latency_info.cc
|
| diff --git a/ui/events/latency_info.cc b/ui/events/latency_info.cc
|
| index 6050d260129072c3c5c4e0410862cb9c97fca1aa..bb2215c0587dd343218c7ef3fd76292dbdc4c32f 100644
|
| --- a/ui/events/latency_info.cc
|
| +++ b/ui/events/latency_info.cc
|
| @@ -201,7 +201,7 @@ void LatencyInfo::AddLatencyNumber(LatencyComponentType component,
|
| int64 id,
|
| int64 component_sequence_number) {
|
| AddLatencyNumberWithTimestamp(component, id, component_sequence_number,
|
| - base::TimeTicks::HighResNow(), 1);
|
| + base::TimeTicks::Now(), 1);
|
| }
|
|
|
| void LatencyInfo::AddLatencyNumberWithTimestamp(LatencyComponentType component,
|
| @@ -238,7 +238,7 @@ void LatencyInfo::AddLatencyNumberWithTimestamp(LatencyComponentType component,
|
| // CrOS). So we need to adjust the diff between in CLOCK_MONOTONIC and
|
| // CLOCK_SYSTEM_TRACE. Note that the diff is drifting overtime so we
|
| // can't use a static value.
|
| - int64 diff = base::TimeTicks::HighResNow().ToInternalValue() -
|
| + int64 diff = base::TimeTicks::Now().ToInternalValue() -
|
| base::TimeTicks::NowFromSystemTraceTime().ToInternalValue();
|
| ts = component.event_time.ToInternalValue() - diff;
|
| } else {
|
|
|