Follow-up to #26: get rid of supplier_data, it's not really needed since

the caller can implement their own supplier object. r=mmentovai.


git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@27 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
bryner 2006-09-20 00:00:12 +00:00
parent cce3492afc
commit 0170bea32f
9 changed files with 16 additions and 43 deletions

View file

@ -26,7 +26,6 @@ MinidumpProcessor::~MinidumpProcessor() {
}
bool MinidumpProcessor::Process(const string &minidump_file,
void *supplier_data,
StackFrames *stack_frames) {
Minidump dump(minidump_file);
if (!dump.Read()) {
@ -56,7 +55,7 @@ bool MinidumpProcessor::Process(const string &minidump_file,
// TODO(bryner): figure out which StackWalker we want
StackwalkerX86 walker(exception->GetContext(), thread_memory,
dump.GetModuleList(), supplier_, supplier_data);
dump.GetModuleList(), supplier_);
walker.Walk(stack_frames);
return true;
}