aboutsummaryrefslogtreecommitdiff
path: root/src/google/minidump_processor.h
diff options
context:
space:
mode:
authormmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-10-23 19:24:58 +0000
committermmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-10-23 19:24:58 +0000
commitd119a921ea611dc38cfcb7411759ddf2c688603f (patch)
tree392d79dada82458d74b010a4974ca09cb204211c /src/google/minidump_processor.h
parentUpdate comments to reflect HTTPS support, r=mark. (diff)
downloadbreakpad-d119a921ea611dc38cfcb7411759ddf2c688603f.tar.xz
Make stack_frame_info vector hold linked_ptrs instead of objects;
make Stackwalker::Walk create and return a CallStack instead of filling a caller-supplied one (#54). r=bryner Interface change: Stackwalker::Walk and MinidumpProcessor::Process now return a new CallStack*. http://groups.google.com/group/airbag-dev/browse_thread/thread/d2bad5d7c115c3fe git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@45 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google/minidump_processor.h')
-rw-r--r--src/google/minidump_processor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/google/minidump_processor.h b/src/google/minidump_processor.h
index 925ea90a..6a126022 100644
--- a/src/google/minidump_processor.h
+++ b/src/google/minidump_processor.h
@@ -46,9 +46,9 @@ class MinidumpProcessor {
MinidumpProcessor(SymbolSupplier *supplier);
~MinidumpProcessor();
- // Fills in the given CallStack by processing the minidump file. Returns
- // true on success.
- bool Process(const string &minidump_file, CallStack *stack);
+ // Returns a new CallStack produced by processing the minidump file. The
+ // caller takes ownership of the CallStack. Returns NULL on failure.
+ CallStack* Process(const string &minidump_file);
private:
SymbolSupplier *supplier_;