| Index: Source/bindings/tests/results/V8TestInterfaceEventConstructor.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceEventConstructor.cpp b/Source/bindings/tests/results/V8TestInterfaceEventConstructor.cpp
|
| index 5e326508f491e7faa9107723fdfb69504c27b1b6..65e74162afcb400b54fe5fb50723f56e5f3637a0 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceEventConstructor.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceEventConstructor.cpp
|
| @@ -145,7 +145,7 @@ static void initializedByEventConstructorReadonlyLongAttributeAttributeGetterCal
|
| static void initializedByEventConstructorReadonlyUint8ArrayAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| TestInterfaceEventConstructor* imp = V8TestInterfaceEventConstructor::toNative(info.Holder());
|
| - RefPtr<Uint8Array> result = imp->initializedByEventConstructorReadonlyUint8ArrayAttribute();
|
| + RefPtr<Uint8Array> result(imp->initializedByEventConstructorReadonlyUint8ArrayAttribute());
|
| if (result && DOMDataStore::setReturnValueFromWrapper<V8Uint8Array>(info.GetReturnValue(), result.get()))
|
| return;
|
| v8::Handle<v8::Value> wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
|
| @@ -165,7 +165,7 @@ static void initializedByEventConstructorReadonlyUint8ArrayAttributeAttributeGet
|
| static void initializedByEventConstructorReadonlyTestInterfaceEmptyAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| TestInterfaceEventConstructor* imp = V8TestInterfaceEventConstructor::toNative(info.Holder());
|
| - RefPtr<TestInterfaceEmpty> result = imp->initializedByEventConstructorReadonlyTestInterfaceEmptyAttribute();
|
| + RefPtr<TestInterfaceEmpty> result(imp->initializedByEventConstructorReadonlyTestInterfaceEmptyAttribute());
|
| if (result && DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceEmpty>(info.GetReturnValue(), result.get()))
|
| return;
|
| v8::Handle<v8::Value> wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
|
| @@ -204,7 +204,7 @@ static void initializedByEventConstructorReadonlyNullableTestInterfaceEmptyAttri
|
| v8SetReturnValueNull(info);
|
| return;
|
| }
|
| - RefPtr<TestInterfaceEmpty> result = jsValue;
|
| + RefPtr<TestInterfaceEmpty> result(jsValue);
|
| if (result && DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceEmpty>(info.GetReturnValue(), result.get()))
|
| return;
|
| v8::Handle<v8::Value> wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
|
|
|