Index: Source/core/inspector/JavaScriptCallFrame.cpp |
diff --git a/Source/core/inspector/JavaScriptCallFrame.cpp b/Source/core/inspector/JavaScriptCallFrame.cpp |
index 00a04646f6d60aadcf20d9e95950552fbffe0fc0..abc5d83f2ad771ec37a430a6194c356846622d46 100644 |
--- a/Source/core/inspector/JavaScriptCallFrame.cpp |
+++ b/Source/core/inspector/JavaScriptCallFrame.cpp |
@@ -36,9 +36,9 @@ |
namespace WebCore { |
JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) |
- : m_debuggerContext(debuggerContext) |
- , m_callFrame(callFrame) |
- , m_isolate(v8::Isolate::GetCurrent()) |
+ : m_isolate(v8::Isolate::GetCurrent()) |
+ , m_debuggerContext(m_isolate, debuggerContext) |
+ , m_callFrame(m_isolate, callFrame) |
{ |
ScriptWrappable::init(this); |
} |