summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/JavaScriptCallFrame.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/JavaScriptCallFrame.h')
-rw-r--r--WebCore/inspector/JavaScriptCallFrame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/inspector/JavaScriptCallFrame.h b/WebCore/inspector/JavaScriptCallFrame.h
index 7b94fa8..6b55bb9 100644
--- a/WebCore/inspector/JavaScriptCallFrame.h
+++ b/WebCore/inspector/JavaScriptCallFrame.h
@@ -26,7 +26,7 @@
#ifndef JavaScriptCallFrame_h
#define JavaScriptCallFrame_h
-#include <runtime/ExecState.h>
+#include <interpreter/CallFrame.h>
#include <wtf/PassRefPtr.h>
#include <wtf/RefCounted.h>
#include <debugger/DebuggerCallFrame.h>
@@ -61,7 +61,7 @@ namespace WebCore {
const JSC::ScopeChainNode* scopeChain() const;
JSC::JSObject* thisObject() const;
- JSC::JSValue* evaluate(const JSC::UString& script, JSC::JSValue*& exception) const;
+ JSC::JSValuePtr evaluate(const JSC::UString& script, JSC::JSValuePtr& exception) const;
private:
JavaScriptCallFrame(const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, int line);