Chromium Code Reviews| Index: src/google_breakpad/processor/minidump.h |
| =================================================================== |
| --- src/google_breakpad/processor/minidump.h (revision 1481) |
| +++ src/google_breakpad/processor/minidump.h (working copy) |
| @@ -914,6 +914,9 @@ |
| public: |
| virtual ~MinidumpLinuxMapsList(); |
| + // Get number of mappings. |
| + unsigned int mapping_count() const { return valid_ ? maps_count_ : 0; } |
|
ivanpe
2015/08/12 00:26:23
Getter should match the name of the variable: http
liuandrew
2015/08/14 22:43:36
Done.
|
| + |
| // Get mapping at the given memory address. The caller owns the pointer. |
| const MinidumpLinuxMaps *GetLinuxMapsForAddress(uint64_t address) const; |
| // Get mapping at the given index. The caller owns the pointer. |