| Index: base/tracked_objects_unittest.cc
|
| diff --git a/base/tracked_objects_unittest.cc b/base/tracked_objects_unittest.cc
|
| index f364c2b80af3de09128060e587c927776e63fe14..1e64508030826ab1caee7e0fb9c6dfeee04593bf 100644
|
| --- a/base/tracked_objects_unittest.cc
|
| +++ b/base/tracked_objects_unittest.cc
|
| @@ -157,11 +157,12 @@ TEST_F(TrackedObjectsTest, TinyStartupShutdown) {
|
|
|
| // Now instigate another birth, while we are timing the run of the first
|
| // execution.
|
| - TrackedTime start_time = ThreadData::NowForStartOfRun(first_birth);
|
| + ThreadData::NowForStartOfRun(first_birth);
|
| // Create a child (using the same birth location).
|
| // TrackingInfo will call TallyABirth() during construction.
|
| base::TimeTicks kBogusBirthTime;
|
| base::TrackingInfo pending_task(location, kBogusBirthTime);
|
| + TrackedTime start_time(pending_task.time_posted);
|
| // Finally conclude the outer run.
|
| TrackedTime end_time = ThreadData::NowForEndOfRun();
|
| ThreadData::TallyRunOnNamedThreadIfTracking(pending_task, start_time,
|
|
|