| Index: Source/core/inspector/ScriptCallFrame.h
|
| diff --git a/Source/core/inspector/ScriptCallFrame.h b/Source/core/inspector/ScriptCallFrame.h
|
| index 48745f986b83d9b91c90058cbace8a51523bb1c6..021e66ddda90945df09ead537d8ebe6eba49f34d 100644
|
| --- a/Source/core/inspector/ScriptCallFrame.h
|
| +++ b/Source/core/inspector/ScriptCallFrame.h
|
| @@ -39,10 +39,11 @@ namespace WebCore {
|
|
|
| class ScriptCallFrame {
|
| public:
|
| - ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column = 0);
|
| + ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column = 0);
|
| ~ScriptCallFrame();
|
|
|
| const String& functionName() const { return m_functionName; }
|
| + const String& scriptId() const { return m_scriptId; }
|
| const String& sourceURL() const { return m_scriptName; }
|
| unsigned lineNumber() const { return m_lineNumber; }
|
| unsigned columnNumber() const { return m_column; }
|
| @@ -53,6 +54,7 @@ public:
|
|
|
| private:
|
| String m_functionName;
|
| + String m_scriptId;
|
| String m_scriptName;
|
| unsigned m_lineNumber;
|
| unsigned m_column;
|
|
|