Index: src/inspector/v8-function-call.cc |
diff --git a/src/inspector/v8-function-call.cc b/src/inspector/v8-function-call.cc |
index b8c86d3da06cfdacdb5ce64e52d4c2e2e852275c..0fcca70cb7467d6bbcee33d7d560e4bb064e78ee 100644 |
--- a/src/inspector/v8-function-call.cc |
+++ b/src/inspector/v8-function-call.cc |
@@ -75,6 +75,8 @@ v8::Local<v8::Value> V8FunctionCall::call(bool& hadException, |
} |
v8::Local<v8::Value> V8FunctionCall::callWithoutExceptionHandling() { |
+ v8::Context::Scope contextScope(m_context); |
+ |
v8::Local<v8::Object> thisObject = v8::Local<v8::Object>::Cast(m_value); |
v8::Local<v8::Value> value; |
if (!thisObject->Get(m_context, m_name).ToLocal(&value)) |