aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad/processor/memory_region.h
diff options
context:
space:
mode:
authormmandlis@chromium.org <mmandlis@chromium.org>2014-09-08 19:10:42 +0000
committermmandlis@chromium.org <mmandlis@chromium.org>2014-09-08 19:10:42 +0000
commit54c2560a82ec0a1c48c087c78b802e72a5459c53 (patch)
tree06072374c2b108f42e6daf9c047bfc65e0e1f01b /src/google_breakpad/processor/memory_region.h
parentBack out trunk r1367. (diff)
downloadbreakpad-54c2560a82ec0a1c48c087c78b802e72a5459c53.tar.xz
Refactoring in preparation for microdump processing
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1370 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google_breakpad/processor/memory_region.h')
-rw-r--r--src/google_breakpad/processor/memory_region.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/google_breakpad/processor/memory_region.h b/src/google_breakpad/processor/memory_region.h
index bd9755f5..30f88df4 100644
--- a/src/google_breakpad/processor/memory_region.h
+++ b/src/google_breakpad/processor/memory_region.h
@@ -67,6 +67,9 @@ class MemoryRegion {
virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const = 0;
virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const = 0;
virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const = 0;
+
+ // Print a human-readable representation of the object to stdout.
+ virtual void Print() const = 0;
};