diff options
Diffstat (limited to 'src/google_breakpad/processor')
-rw-r--r-- | src/google_breakpad/processor/stack_frame_symbolizer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/google_breakpad/processor/stack_frame_symbolizer.h b/src/google_breakpad/processor/stack_frame_symbolizer.h index e862ff6f..6f89167e 100644 --- a/src/google_breakpad/processor/stack_frame_symbolizer.h +++ b/src/google_breakpad/processor/stack_frame_symbolizer.h @@ -56,13 +56,13 @@ class StackFrameSymbolizer { enum SymbolizerResult { // Symbol data was found and successfully loaded in resolver. // This does NOT guarantee source line info is found within symbol file. - NO_ERROR, + kNoError, // This indicates non-critical error, such as, no code module found for // frame's instruction, no symbol file, or resolver failed to load symbol. - ERROR, + kError, // This indicates error for which stack walk should be interrupted // and retried in future. - INTERRUPT + kInterrupt }; StackFrameSymbolizer(SymbolSupplier* supplier, |