aboutsummaryrefslogtreecommitdiff
path: root/src/tools/mac/crash_report/on_demand_symbol_supplier.h
diff options
context:
space:
mode:
authordmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-09-15 00:33:09 +0000
committerdmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-09-15 00:33:09 +0000
commit99b36baa82b7ea8c744e2f66071d27837e897989 (patch)
tree198d22f4a041b57abd5bc9037ae7968036c0f7c1 /src/tools/mac/crash_report/on_demand_symbol_supplier.h
parentIssue203 : reviewed by Waylonis (diff)
downloadbreakpad-99b36baa82b7ea8c744e2f66071d27837e897989.tar.xz
Adds the ability to designate a folder with sym files in it that will be used for symbol matching
to crash_report. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@207 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools/mac/crash_report/on_demand_symbol_supplier.h')
-rw-r--r--src/tools/mac/crash_report/on_demand_symbol_supplier.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tools/mac/crash_report/on_demand_symbol_supplier.h b/src/tools/mac/crash_report/on_demand_symbol_supplier.h
index cedbebb0..0c3ebff9 100644
--- a/src/tools/mac/crash_report/on_demand_symbol_supplier.h
+++ b/src/tools/mac/crash_report/on_demand_symbol_supplier.h
@@ -47,7 +47,8 @@ class OnDemandSymbolSupplier : public SymbolSupplier {
public:
// |search_dir| is the directory to search for alternative symbols with
// the same name as the module in the minidump
- OnDemandSymbolSupplier(const string &search_dir);
+ OnDemandSymbolSupplier(const string &search_dir,
+ const string &symbol_search_dir);
virtual ~OnDemandSymbolSupplier() {}
// Returns the path to the symbol file for the given module.
@@ -58,7 +59,8 @@ class OnDemandSymbolSupplier : public SymbolSupplier {
protected:
// Search directory
string search_dir_;
-
+ string symbol_search_dir_;
+
// When we create a symbol file for a module, save the name of the module
// and the path to that module's symbol file.
map<string, string> module_file_map_;