| 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..7ddf217d0d0be8f3228dee467682224e5acdca44 100644
|
| --- a/snapshot/mac/module_snapshot_mac.cc
|
| +++ b/snapshot/mac/module_snapshot_mac.cc
|
| @@ -150,9 +150,10 @@ 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_);
|
| - return mach_o_image_reader_->UUID(uuid);
|
| + mach_o_image_reader_->UUID(uuid);
|
| + *age = 0;
|
| }
|
|
|
| std::vector<std::string> ModuleSnapshotMac::AnnotationsVector() const {
|
|
|