Index: Source/bindings/tests/results/core/V8TestDictionary.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestDictionary.cpp b/Source/bindings/tests/results/core/V8TestDictionary.cpp |
index 9262411b22b29c2f738e77912c9daa1e239b14ad..dd0da4d580721c81f277329ca79b7c5046277d2d 100644 |
--- a/Source/bindings/tests/results/core/V8TestDictionary.cpp |
+++ b/Source/bindings/tests/results/core/V8TestDictionary.cpp |
@@ -80,7 +80,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value |
} else if (doubleOrNullMemberValue->IsNull()) { |
impl.setDoubleOrNullMemberToNull(); |
} else { |
- double doubleOrNullMember = toRestrictedDouble(doubleOrNullMemberValue, exceptionState); |
+ double doubleOrNullMember = toRestrictedDouble(isolate, doubleOrNullMemberValue, exceptionState); |
if (exceptionState.hadException()) |
return; |
impl.setDoubleOrNullMember(doubleOrNullMember); |
@@ -176,7 +176,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value |
if (longMemberValue.IsEmpty() || longMemberValue->IsUndefined()) { |
// Do nothing. |
} else { |
- int longMember = toInt32(longMemberValue, exceptionState); |
+ int longMember = toInt32(isolate, longMemberValue, exceptionState); |
if (exceptionState.hadException()) |
return; |
impl.setLongMember(longMember); |
@@ -239,7 +239,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value |
if (restrictedDoubleMemberValue.IsEmpty() || restrictedDoubleMemberValue->IsUndefined()) { |
// Do nothing. |
} else { |
- double restrictedDoubleMember = toRestrictedDouble(restrictedDoubleMemberValue, exceptionState); |
+ double restrictedDoubleMember = toRestrictedDouble(isolate, restrictedDoubleMemberValue, exceptionState); |
if (exceptionState.hadException()) |
return; |
impl.setRestrictedDoubleMember(restrictedDoubleMember); |
@@ -444,7 +444,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value |
if (unrestrictedDoubleMemberValue.IsEmpty() || unrestrictedDoubleMemberValue->IsUndefined()) { |
// Do nothing. |
} else { |
- double unrestrictedDoubleMember = toDouble(unrestrictedDoubleMemberValue, exceptionState); |
+ double unrestrictedDoubleMember = toDouble(isolate, unrestrictedDoubleMemberValue, exceptionState); |
if (exceptionState.hadException()) |
return; |
impl.setUnrestrictedDoubleMember(unrestrictedDoubleMember); |