| Index: sky/engine/core/inspector/ScriptCallFrame.h
|
| diff --git a/sky/engine/core/inspector/ScriptCallFrame.h b/sky/engine/core/inspector/ScriptCallFrame.h
|
| index 082c56de7da8669994e100159a7ff6139da8f2b6..0d4d626586be9cbe8de819ae9682b263113cea21 100644
|
| --- a/sky/engine/core/inspector/ScriptCallFrame.h
|
| +++ b/sky/engine/core/inspector/ScriptCallFrame.h
|
| @@ -31,6 +31,7 @@
|
| #ifndef ScriptCallFrame_h
|
| #define ScriptCallFrame_h
|
|
|
| +#include "core/InspectorTypeBuilder.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| @@ -48,6 +49,8 @@ public:
|
| unsigned lineNumber() const { return m_lineNumber; }
|
| unsigned columnNumber() const { return m_column; }
|
|
|
| + PassRefPtr<TypeBuilder::Console::CallFrame> buildInspectorObject() const;
|
| +
|
| private:
|
| String m_functionName;
|
| String m_scriptId;
|
|
|