mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-08 15:38:23 +01:00
Issue 49012: Breakpad Processor: Rename 'StackFrameInfo' structure to 'WindowsFrameInfo'.
Also, rename stack_frame_info.h to windows_frame_info.h. If it seems odd to have functions like FillSourceLineInfo returning Windows-specific data structures... well, it is! This patch just makes it more obvious what's going on. a=jimblandy, r=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@471 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
92b1f834d1
commit
b64d76a3b8
19 changed files with 55 additions and 55 deletions
|
|
@ -40,7 +40,7 @@ namespace google_breakpad {
|
|||
using std::string;
|
||||
|
||||
struct StackFrame;
|
||||
struct StackFrameInfo;
|
||||
struct WindowsFrameInfo;
|
||||
|
||||
class SourceLineResolverInterface {
|
||||
public:
|
||||
|
|
@ -68,9 +68,9 @@ class SourceLineResolverInterface {
|
|||
// module_name fields must already be filled in. Additional debugging
|
||||
// information, if available, is returned. If the information is not
|
||||
// available, returns NULL. A NULL return value does not indicate an
|
||||
// error. The caller takes ownership of any returned StackFrameInfo
|
||||
// error. The caller takes ownership of any returned WindowsFrameInfo
|
||||
// object.
|
||||
virtual StackFrameInfo* FillSourceLineInfo(StackFrame *frame) const = 0;
|
||||
virtual WindowsFrameInfo* FillSourceLineInfo(StackFrame *frame) const = 0;
|
||||
|
||||
protected:
|
||||
// SourceLineResolverInterface cannot be instantiated except by subclasses
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue