Index: src/google_breakpad/processor/minidump.h |
diff --git a/src/google_breakpad/processor/minidump.h b/src/google_breakpad/processor/minidump.h |
index 2b5025e4ff55740dc9306e97d4068fd970f7e498..66ef4ecd29fad0a1a00082edebf0e2f6a1c2189a 100644 |
--- a/src/google_breakpad/processor/minidump.h |
+++ b/src/google_breakpad/processor/minidump.h |
@@ -382,6 +382,10 @@ class MinidumpModule : public MinidumpObject, |
const MDRawModule* module() const { return valid_ ? &module_ : NULL; } |
+ // This method is dedicated for the Android where the module could overlap |
Mark Mentovai
2016/05/03 20:39:32
This method is intended to handle the case on Andr
michaelbai
2016/05/03 21:59:19
Done.
|
+ // with ashmem, and not supposed to be used in anywhere else. |
Mark Mentovai
2016/05/03 20:39:32
and is not supposed to be used anywhere else.
michaelbai
2016/05/03 21:59:19
Done.
|
+ void set_base_address_and_size(uint64_t base_address, uint64_t size); |
+ |
// CodeModule implementation |
virtual uint64_t base_address() const { |
return valid_ ? module_.base_of_image : static_cast<uint64_t>(-1); |