diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/dwarf_cu_to_module.h | 7 | ||||
-rw-r--r-- | src/common/dwarf_cu_to_module_unittest.cc | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/common/dwarf_cu_to_module.h b/src/common/dwarf_cu_to_module.h index a262f3b5..9ab86a1d 100644 --- a/src/common/dwarf_cu_to_module.h +++ b/src/common/dwarf_cu_to_module.h @@ -58,9 +58,10 @@ using dwarf2reader::DwarfTag; // Populate a google_breakpad::Module with DWARF debugging information. // // An instance of this class can be provided as a handler to a -// dwarf2reader::CompilationUnit DWARF parser. The handler uses the -// results of parsing to populate a google_breakpad::Module with -// source file, function, and source line information. +// dwarf2reader::DIEDispatcher, which can in turn be a handler for a +// dwarf2reader::CompilationUnit DWARF parser. The handler uses the results +// of parsing to populate a google_breakpad::Module with source file, +// function, and source line information. class DwarfCUToModule: public dwarf2reader::RootDIEHandler { struct FilePrivate; public: diff --git a/src/common/dwarf_cu_to_module_unittest.cc b/src/common/dwarf_cu_to_module_unittest.cc index e88e381c..03b0954e 100644 --- a/src/common/dwarf_cu_to_module_unittest.cc +++ b/src/common/dwarf_cu_to_module_unittest.cc @@ -196,7 +196,7 @@ class CUFixtureBase { // not Finish. If NAME is non-zero, use it as the DW_AT_name // attribute. DIEHandler *StartSpecifiedDIE(DIEHandler *parent, DwarfTag tag, - uint64 offset, const char *name = NULL); + uint64 specification, const char *name = NULL); // Define a function as a child of PARENT with the given name, // address, and size. Call EndAttributes and Finish; one cannot |