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 aabc4f255467f5da49147e8efa5efff077f4cbe8..db9260b4aceb3ad92959ec6afe69c64770027902 100644 |
--- a/ppapi/shared_impl/ppb_trace_event_impl.cc |
+++ b/ppapi/shared_impl/ppb_trace_event_impl.cc |
@@ -80,7 +80,7 @@ void TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp( |
id, |
trace_event_internal::kNoId, |
thread_id, |
- base::TraceTicks::FromInternalValue(timestamp), |
+ base::TimeTicks::FromInternalValue(timestamp), |
num_args, |
arg_names, |
arg_types, |
@@ -95,7 +95,7 @@ void TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp( |
// static |
int64_t TraceEventImpl::Now() { |
- return base::TraceTicks::Now().ToInternalValue(); |
+ return base::TimeTicks::Now().ToInternalValue(); |
} |
// static |