aboutsummaryrefslogtreecommitdiff
path: root/src/processor/stackwalker.h
diff options
context:
space:
mode:
authorbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-20 00:00:12 +0000
committerbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-20 00:00:12 +0000
commit0170bea32f3b6745a924c04899d0dae563e078f6 (patch)
tree6922b9009d58429d5e855b42989815ebc4a5b346 /src/processor/stackwalker.h
parentGet rid of CrashReport, and rename CrashReportProcessor to MinidumpProcessor (diff)
downloadbreakpad-0170bea32f3b6745a924c04899d0dae563e078f6.tar.xz
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
Diffstat (limited to 'src/processor/stackwalker.h')
-rw-r--r--src/processor/stackwalker.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/processor/stackwalker.h b/src/processor/stackwalker.h
index bfcb783a..1b1aed63 100644
--- a/src/processor/stackwalker.h
+++ b/src/processor/stackwalker.h
@@ -54,12 +54,10 @@ class Stackwalker {
// that is used to look up which code module each stack frame is
// associated with. supplier is an optional caller-supplied SymbolSupplier
// implementation. If supplier is NULL, source line info will not be
- // resolved. supplier_data will be passed to the SymbolSupplier's
- // GetSymbolFile method.
+ // resolved.
Stackwalker(MemoryRegion* memory,
MinidumpModuleList* modules,
- SymbolSupplier* supplier,
- void* supplier_data);
+ SymbolSupplier* supplier);
// The stack memory to walk. Subclasses will require this region to
// get information from the stack.
@@ -83,9 +81,6 @@ class Stackwalker {
// The optional SymbolSupplier for resolving source line info.
SymbolSupplier* supplier_;
-
- // Caller-supplied data to be passed to the symbol supplier
- void* supplier_data_;
};