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..65dda3ee731313fa06455628137059b6e9eb89f6 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(scriptState, object), toJSONValue(scriptState, hints)); |
} |
void V8InjectedScriptHost::evalMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |