Chromium Code Reviews| Index: google_breakpad/processor/minidump.h |
| diff --git a/google_breakpad/processor/minidump.h b/google_breakpad/processor/minidump.h |
| index 2b5025e4ff55740dc9306e97d4068fd970f7e498..ddc1422659ee28b72cfd386bead191609fcb2241 100644 |
| --- a/google_breakpad/processor/minidump.h |
| +++ b/google_breakpad/processor/minidump.h |
| @@ -382,6 +382,8 @@ class MinidumpModule : public MinidumpObject, |
| const MDRawModule* module() const { return valid_ ? &module_ : NULL; } |
| + void adjust_base_address_and_size(uint64_t base_address, uint64_t size); |
|
Mark Mentovai
2016/05/03 04:07:07
“Set” instead of “adjust”. “Adjust” makes it sound
michaelbai
2016/05/03 19:40:56
Done.
|
| + |
| // CodeModule implementation |
| virtual uint64_t base_address() const { |
| return valid_ ? module_.base_of_image : static_cast<uint64_t>(-1); |