Index: Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
diff --git a/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp b/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
index c3af00357764c5a222bbd50b49445ec0924b0f0f..689940c8a325e1afb94332f7a12149608d9062d9 100644 |
--- a/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
+++ b/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
@@ -131,8 +131,8 @@ void V8DevToolsHost::showContextMenuAtPointMethodCustom(const v8::FunctionCallba |
ExceptionState exceptionState(ExceptionState::ExecutionContext, "showContextMenuAtPoint", "DevToolsHost", info.Holder(), info.GetIsolate()); |
- TONATIVE_VOID_EXCEPTIONSTATE(float, x, toRestrictedFloat(info[0], exceptionState), exceptionState); |
- TONATIVE_VOID_EXCEPTIONSTATE(float, y, toRestrictedFloat(info[1], exceptionState), exceptionState); |
+ TONATIVE_VOID_EXCEPTIONSTATE(float, x, toRestrictedFloat(info.GetIsolate(), info[0], exceptionState), exceptionState); |
+ TONATIVE_VOID_EXCEPTIONSTATE(float, y, toRestrictedFloat(info.GetIsolate(), info[1], exceptionState), exceptionState); |
v8::Local<v8::Value> array = v8::Local<v8::Value>::Cast(info[2]); |
if (!array->IsArray()) |