Index: Source/bindings/tests/results/V8TestObject.cpp |
diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp |
index 78ec2b75ef7c4c76468c656f4f11940971775e15..993da6f4a9d03e8d0a2e7e9342f2e0c5c8ea2f45 100644 |
--- a/Source/bindings/tests/results/V8TestObject.cpp |
+++ b/Source/bindings/tests/results/V8TestObject.cpp |
@@ -4974,15 +4974,14 @@ void V8TestObject::namedPropertyQuery(v8::Local<v8::String> name, const v8::Prop |
TestObj* collection = toNative(info.Holder()); |
AtomicString propertyName = toWebCoreAtomicString(name); |
ExceptionCode ec = 0; |
- int returnValue = 0; |
- bool result = collection->namedPropertyQuery(propertyName, returnValue, ec); |
+ bool result = collection->namedPropertyQuery(propertyName, ec); |
if (ec) { |
setDOMException(ec, info.GetIsolate()); |
return; |
} |
if (!result) |
return; |
- v8SetReturnValueInt(info, 0); |
+ v8SetReturnValueInt(info, v8::None); |
} |
static v8::Handle<v8::FunctionTemplate> ConfigureV8TestObjectTemplate(v8::Handle<v8::FunctionTemplate> desc, v8::Isolate* isolate, WrapperWorldType currentWorldType) |
@@ -5159,7 +5158,6 @@ v8::Handle<v8::Object> V8TestObject::createWrapper(PassRefPtr<TestObj> impl, v8: |
v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, impl.get(), isolate); |
if (UNLIKELY(wrapper.IsEmpty())) |
return wrapper; |
- |
installPerContextProperties(wrapper, impl.get(), isolate); |
V8DOMWrapper::associateObjectWithWrapper(impl, &info, wrapper, isolate, WrapperConfiguration::Independent); |
return wrapper; |