aboutsummaryrefslogtreecommitdiff
path: root/src/tools
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/tools
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/tools')
-rw-r--r--src/tools/mac/crash_report/crash_report.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/mac/crash_report/crash_report.mm b/src/tools/mac/crash_report/crash_report.mm
index 8b10b646..f68200c7 100644
--- a/src/tools/mac/crash_report/crash_report.mm
+++ b/src/tools/mac/crash_report/crash_report.mm
@@ -280,7 +280,7 @@ static void ProcessSingleReport(Options *options, NSString *file_path) {
// Print all of the threads in the dump.
int thread_count = static_cast<int>(process_state.threads()->size());
- const std::vector<google_breakpad::MinidumpMemoryRegion*>
+ const std::vector<google_breakpad::MemoryRegion*>
*thread_memory_regions = process_state.thread_memory_regions();
for (int thread_index = 0; thread_index < thread_count; ++thread_index) {
@@ -289,7 +289,7 @@ static void ProcessSingleReport(Options *options, NSString *file_path) {
printf("\n");
printf("Thread %d\n", thread_index);
PrintStack(process_state.threads()->at(thread_index), cpu);
- google_breakpad::MinidumpMemoryRegion *thread_stack_bytes =
+ google_breakpad::MemoryRegion *thread_stack_bytes =
thread_memory_regions->at(thread_index);
if (options->printThreadMemory) {
thread_stack_bytes->Print();