Chromium Code Reviews| Index: snapshot/win/module_snapshot_win.h |
| diff --git a/snapshot/win/module_snapshot_win.h b/snapshot/win/module_snapshot_win.h |
| index 7cdcc5668eb632ef470d513eac2864b27376e008..83c5b3949f7d69dc6d4dc923ecfdaa7f7d0f7cef 100644 |
| --- a/snapshot/win/module_snapshot_win.h |
| +++ b/snapshot/win/module_snapshot_win.h |
| @@ -81,6 +81,7 @@ class ModuleSnapshotWin final : public ModuleSnapshot { |
| uint16_t* version_3) const override; |
| ModuleType GetModuleType() const override; |
| void UUIDAndAge(crashpad::UUID* uuid, uint32_t* age) const override; |
| + std::string PDBName() const override; |
| std::vector<std::string> AnnotationsVector() const override; |
| std::map<std::string, std::string> AnnotationsSimpleMap() const override; |
| @@ -92,6 +93,9 @@ class ModuleSnapshotWin final : public ModuleSnapshot { |
| time_t timestamp_; |
| scoped_ptr<PEImageReader> pe_image_reader_; |
| ProcessReaderWin* process_reader_; // weak |
| + UUID uuid_; |
|
Mark Mentovai
2015/10/28 20:01:11
Organize for better packing.
scottmg
2015/10/28 20:59:25
Done. (Maybe?)
|
| + uint32_t age_; |
| + std::string pdb_name_; |
| InitializationStateDcheck initialized_; |
| DISALLOW_COPY_AND_ASSIGN(ModuleSnapshotWin); |