Index: Source/core/inspector/JavaScriptCallFrame.h |
diff --git a/Source/core/inspector/JavaScriptCallFrame.h b/Source/core/inspector/JavaScriptCallFrame.h |
index e4996b37ea1ae9b2199fa9d47e72979196eee217..313394213e4a280fd46ff0e19d61854592e5f2bf 100644 |
--- a/Source/core/inspector/JavaScriptCallFrame.h |
+++ b/Source/core/inspector/JavaScriptCallFrame.h |
@@ -58,6 +58,9 @@ public: |
int line() const; |
int column() const; |
String functionName() const; |
+ double framePointerHigh() const; |
+ double framePointerLow() const; |
+ |
v8::Handle<v8::Value> scopeChain() const; |
int scopeType(int scopeIndex) const; |
@@ -74,6 +77,7 @@ private: |
JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame); |
int callV8FunctionReturnInt(const char* name) const; |
+ uint32_t callV8FunctionReturnUint32(const char* name) const; |
String callV8FunctionReturnString(const char* name) const; |
v8::Isolate* m_isolate; |