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
This commit is contained in:
ted.mielczarek@gmail.com 2013-03-04 15:42:50 +00:00
parent cd04fe2c88
commit c02002a581
3 changed files with 17 additions and 17 deletions

View file

@ -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,