Index: snapshot/win/process_snapshot_win.cc |
diff --git a/snapshot/win/process_snapshot_win.cc b/snapshot/win/process_snapshot_win.cc |
index cf609610953bd68255ecc3f7eaa1116c1de42bdb..16623069ce9015bda8be3437815757000bcdfb00 100644 |
--- a/snapshot/win/process_snapshot_win.cc |
+++ b/snapshot/win/process_snapshot_win.cc |
@@ -99,12 +99,14 @@ void ProcessSnapshotWin::SnapshotTime(timeval* snapshot_time) const { |
} |
void ProcessSnapshotWin::ProcessStartTime(timeval* start_time) const { |
- CHECK(false) << "TODO(scottmg)"; |
+ INITIALIZATION_STATE_DCHECK_VALID(initialized_); |
+ process_reader_.StartTime(start_time); |
} |
void ProcessSnapshotWin::ProcessCPUTimes(timeval* user_time, |
timeval* system_time) const { |
- CHECK(false) << "TODO(scottmg)"; |
+ INITIALIZATION_STATE_DCHECK_VALID(initialized_); |
+ process_reader_.CPUTimes(user_time, system_time); |
} |
void ProcessSnapshotWin::ReportID(UUID* report_id) const { |