aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad
diff options
context:
space:
mode:
authorted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-03-04 15:42:50 +0000
committerted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-03-04 15:42:50 +0000
commitc02002a58184d9281a92ff6cd2606d6ba1dfb483 (patch)
tree81b839d357f29a0886fed2c1733066ecfdbea1bf /src/google_breakpad
parentRemove unnecessary #include unistd.h (diff)
downloadbreakpad-c02002a58184d9281a92ff6cd2606d6ba1dfb483.tar.xz
Work around Windows headers #defining ERROR by renaming enum values in StackFrameSymbolizer
Patch by Julian Seward <jseward@acm.org>, R=ted git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1120 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google_breakpad')
-rw-r--r--src/google_breakpad/processor/stack_frame_symbolizer.h6
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,