| Index: Source/bindings/modules/v8/V8BindingForModulesTest.cpp
|
| diff --git a/Source/bindings/modules/v8/V8BindingForModulesTest.cpp b/Source/bindings/modules/v8/V8BindingForModulesTest.cpp
|
| index ec155aa609e75a73d5094df265229abc67edb5bb..b45ea6ef12efc0dafc81e4b70ce5bc964f44f9fb 100644
|
| --- a/Source/bindings/modules/v8/V8BindingForModulesTest.cpp
|
| +++ b/Source/bindings/modules/v8/V8BindingForModulesTest.cpp
|
| @@ -43,7 +43,8 @@ IDBKey* checkKeyFromValueAndKeyPathInternal(v8::Isolate* isolate, const ScriptVa
|
| IDBKeyPath idbKeyPath(keyPath);
|
| EXPECT_TRUE(idbKeyPath.isValid());
|
|
|
| - return createIDBKeyFromScriptValueAndKeyPath(isolate, value, idbKeyPath);
|
| + NonThrowableExceptionState exceptionState;
|
| + return ScriptValue::to<IDBKey*>(isolate, value, exceptionState, idbKeyPath);
|
| }
|
|
|
| void checkKeyPathNullValue(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath)
|
|
|