Index: Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp |
diff --git a/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp b/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp |
index 8ea7fefeec70f34fab3df2327a6e7fd6bbb11f98..6dd5f15667baf87ab383977227a2aee3e4720efa 100644 |
--- a/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp |
+++ b/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp |
@@ -359,7 +359,7 @@ void V8InjectedScriptHost::inspectMethodCustom(const v8::FunctionCallbackInfo<v8 |
ScriptState* scriptState = ScriptState::current(info.GetIsolate()); |
ScriptValue object(scriptState, info[0]); |
ScriptValue hints(scriptState, info[1]); |
- host->inspectImpl(object.toJSONValue(scriptState), hints.toJSONValue(scriptState)); |
+ host->inspectImpl(toJSONValue(object), toJSONValue(hints)); |
} |
void V8InjectedScriptHost::evalMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |