aboutsummaryrefslogtreecommitdiff
path: root/src/processor
diff options
context:
space:
mode:
authormmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-06 21:37:46 +0000
committermmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-06 21:37:46 +0000
commit7f686d1953daccc411215294fcf6147adaef5349 (patch)
tree437f7fa2f2a18c9368c311097727faddaf880f93 /src/processor
parentInitial implementation of x86 stackwalker (#9), missing file. r=bryner (diff)
downloadbreakpad-7f686d1953daccc411215294fcf6147adaef5349.tar.xz
Conform to style guidelines: methods overriding virtual methods should also be declared virtual.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@14 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor')
-rw-r--r--src/processor/stackwalker_x86.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/processor/stackwalker_x86.h b/src/processor/stackwalker_x86.h
index 74d893a2..6bb819de 100644
--- a/src/processor/stackwalker_x86.h
+++ b/src/processor/stackwalker_x86.h
@@ -49,8 +49,8 @@ class StackwalkerX86 : public Stackwalker {
private:
// Implementation of Stackwalker, using x86 context (%ebp, %eip) and
// stack conventions (saved %ebp at [%ebp], saved %eip at 4[%ebp]).
- bool GetContextFrame(StackFrame* frame);
- bool GetCallerFrame(StackFrame* frame);
+ virtual bool GetContextFrame(StackFrame* frame);
+ virtual bool GetCallerFrame(StackFrame* frame);
// Stores the CPU context corresponding to the innermost stack frame to
// be returned by GetContextFrame.