From 0170bea32f3b6745a924c04899d0dae563e078f6 Mon Sep 17 00:00:00 2001 From: bryner Date: Wed, 20 Sep 2006 00:00:12 +0000 Subject: 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 --- src/processor/stackwalker.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/processor/stackwalker.h') 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_; }; -- cgit v1.2.1