| Index: ppapi/shared_impl/ppb_trace_event_impl.cc
|
| diff --git a/ppapi/shared_impl/ppb_trace_event_impl.cc b/ppapi/shared_impl/ppb_trace_event_impl.cc
|
| index 1fc2bc3a3d6c6b78601e217f1a2f9571191807ea..cb349d499f83ef5a851ab2dc48d0df54a5cd062c 100644
|
| --- a/ppapi/shared_impl/ppb_trace_event_impl.cc
|
| +++ b/ppapi/shared_impl/ppb_trace_event_impl.cc
|
| @@ -79,7 +79,7 @@ void TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp(
|
| name,
|
| id,
|
| thread_id,
|
| - base::TimeTicks::FromInternalValue(timestamp),
|
| + base::TraceTicks::FromInternalValue(timestamp),
|
| num_args,
|
| arg_names,
|
| arg_types,
|
| @@ -94,7 +94,7 @@ void TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp(
|
|
|
| // static
|
| int64_t TraceEventImpl::Now() {
|
| - return base::TimeTicks::NowFromSystemTraceTime().ToInternalValue();
|
| + return base::TraceTicks::Now().ToInternalValue();
|
| }
|
|
|
| // static
|
|
|