Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: google_breakpad/processor/minidump.h

Issue 1939333002: Write adjusted range back to module (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | processor/minidump.cc » ('j') | processor/minidump.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | processor/minidump.cc » ('j') | processor/minidump.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698