summaryrefslogtreecommitdiff
path: root/Source/core/inspector/JavaScriptCallFrame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/core/inspector/JavaScriptCallFrame.cpp')
-rw-r--r--Source/core/inspector/JavaScriptCallFrame.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/core/inspector/JavaScriptCallFrame.cpp b/Source/core/inspector/JavaScriptCallFrame.cpp
index 7d451e661..c7d464e23 100644
--- a/Source/core/inspector/JavaScriptCallFrame.cpp
+++ b/Source/core/inspector/JavaScriptCallFrame.cpp
@@ -156,9 +156,9 @@ v8::Handle<v8::Value> JavaScriptCallFrame::restart()
{
v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate);
v8::Handle<v8::Function> restartFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "restart")));
- v8::Debug::SetLiveEditEnabled(true);
+ v8::Debug::SetLiveEditEnabled(true, m_isolate);
v8::Handle<v8::Value> result = restartFunction->Call(callFrame, 0, 0);
- v8::Debug::SetLiveEditEnabled(false);
+ v8::Debug::SetLiveEditEnabled(false, m_isolate);
return result;
}