diff options
Diffstat (limited to 'src/google_breakpad/processor')
-rw-r--r-- | src/google_breakpad/processor/minidump_processor.h | 6 | ||||
-rw-r--r-- | src/google_breakpad/processor/symbol_supplier.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/google_breakpad/processor/minidump_processor.h b/src/google_breakpad/processor/minidump_processor.h index 9e7ea191..fc0024bc 100644 --- a/src/google_breakpad/processor/minidump_processor.h +++ b/src/google_breakpad/processor/minidump_processor.h @@ -46,9 +46,9 @@ class MinidumpProcessor { public: // Return type for Process() enum ProcessResult { - PROCESS_OK, // the minidump was processed successfully - PROCESS_ERROR, // there was an error processing the minidump - PROCESS_INTERRUPTED, // processing was interrupted by the SymbolSupplier + PROCESS_OK, // the minidump was processed successfully + PROCESS_ERROR, // there was an error processing the minidump + PROCESS_INTERRUPTED // processing was interrupted by the SymbolSupplier }; // Initializes this MinidumpProcessor. supplier should be an diff --git a/src/google_breakpad/processor/symbol_supplier.h b/src/google_breakpad/processor/symbol_supplier.h index 8fc88a66..0459c8aa 100644 --- a/src/google_breakpad/processor/symbol_supplier.h +++ b/src/google_breakpad/processor/symbol_supplier.h @@ -52,7 +52,7 @@ class SymbolSupplier { FOUND, // stops processing the minidump immediately - INTERRUPT, + INTERRUPT }; virtual ~SymbolSupplier() {} |