Chromium Code Reviews| Index: snapshot/mac/module_snapshot_mac.cc |
| diff --git a/snapshot/mac/module_snapshot_mac.cc b/snapshot/mac/module_snapshot_mac.cc |
| index cc7e1863edd5e4289708264a60f7e9a1442fa76b..58b7363916a6b53756d081689c926286f9003461 100644 |
| --- a/snapshot/mac/module_snapshot_mac.cc |
| +++ b/snapshot/mac/module_snapshot_mac.cc |
| @@ -150,8 +150,9 @@ ModuleSnapshot::ModuleType ModuleSnapshotMac::GetModuleType() const { |
| } |
| } |
| -void ModuleSnapshotMac::UUID(crashpad::UUID* uuid) const { |
| +void ModuleSnapshotMac::UUIDAndAge(crashpad::UUID* uuid, uint32_t* age) const { |
| INITIALIZATION_STATE_DCHECK_VALID(initialized_); |
| + *age = 0; |
|
Mark Mentovai
2015/10/27 20:02:27
Since this function returns void, let’s get rid of
scottmg
2015/10/27 20:06:12
Done.
|
| return mach_o_image_reader_->UUID(uuid); |
| } |