aboutsummaryrefslogtreecommitdiff
path: root/src/google/symbol_supplier.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/google/symbol_supplier.h')
-rw-r--r--src/google/symbol_supplier.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/google/symbol_supplier.h b/src/google/symbol_supplier.h
index 279e99f2..f0a6e39c 100644
--- a/src/google/symbol_supplier.h
+++ b/src/google/symbol_supplier.h
@@ -24,16 +24,15 @@ namespace google_airbag {
using std::string;
class MinidumpModule;
-struct CrashReport;
class SymbolSupplier {
public:
virtual ~SymbolSupplier() {}
// Returns the path to the symbol file for the given module.
- // report will be the pointer supplied to ProcessReport().
+ // supplier_data is passed through from MinidumpProcessor::Process().
virtual string GetSymbolFile(MinidumpModule *module,
- const CrashReport *report) = 0;
+ void *supplier_data) = 0;
};
} // namespace google_airbag