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
This commit is contained in:
mmentovai 2006-09-06 21:37:46 +00:00
parent 73badfc376
commit 7f686d1953

View file

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