| Index: Source/bindings/tests/results/V8TestObjectPython.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestObjectPython.cpp b/Source/bindings/tests/results/V8TestObjectPython.cpp
|
| index 8815261686bdf6d68cdb9c360652c821a47c5991..a093e85008cdf61b17c5b254d889999e398547c8 100644
|
| --- a/Source/bindings/tests/results/V8TestObjectPython.cpp
|
| +++ b/Source/bindings/tests/results/V8TestObjectPython.cpp
|
| @@ -2525,7 +2525,7 @@ static void locationAttributeGetterCallback(v8::Local<v8::String>, const v8::Pro
|
| static void locationAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObjectPython* proxyImp = V8TestObjectPython::toNative(info.Holder());
|
| - TestNode* imp = WTF::getPtr(proxyImp->location());
|
| + RefPtr<TestNode> imp = WTF::getPtr(proxyImp->location());
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
| @@ -2555,7 +2555,7 @@ static void locationWithExceptionAttributeGetterCallback(v8::Local<v8::String>,
|
| static void locationWithExceptionAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObjectPython* proxyImp = V8TestObjectPython::toNative(info.Holder());
|
| - TestNode* imp = WTF::getPtr(proxyImp->locationWithException());
|
| + RefPtr<TestNode> imp = WTF::getPtr(proxyImp->locationWithException());
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
| @@ -2585,7 +2585,7 @@ static void locationWithCallWithAttributeGetterCallback(v8::Local<v8::String>, c
|
| static void locationWithCallWithAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObjectPython* proxyImp = V8TestObjectPython::toNative(info.Holder());
|
| - TestNode* imp = WTF::getPtr(proxyImp->locationWithCallWith());
|
| + RefPtr<TestNode> imp = WTF::getPtr(proxyImp->locationWithCallWith());
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
| @@ -2615,7 +2615,7 @@ static void locationWithPerWorldBindingsAttributeGetterCallback(v8::Local<v8::St
|
| static void locationWithPerWorldBindingsAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObjectPython* proxyImp = V8TestObjectPython::toNative(info.Holder());
|
| - TestNode* imp = WTF::getPtr(proxyImp->locationWithPerWorldBindings());
|
| + RefPtr<TestNode> imp = WTF::getPtr(proxyImp->locationWithPerWorldBindings());
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
| @@ -2645,7 +2645,7 @@ static void locationWithPerWorldBindingsAttributeGetterCallbackForMainWorld(v8::
|
| static void locationWithPerWorldBindingsAttributeSetterForMainWorld(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObjectPython* proxyImp = V8TestObjectPython::toNative(info.Holder());
|
| - TestNode* imp = WTF::getPtr(proxyImp->locationWithPerWorldBindings());
|
| + RefPtr<TestNode> imp = WTF::getPtr(proxyImp->locationWithPerWorldBindings());
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
| @@ -3460,7 +3460,7 @@ static void locationReplaceableAttributeGetterCallback(v8::Local<v8::String>, co
|
| static void locationReplaceableAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObjectPython* proxyImp = V8TestObjectPython::toNative(info.Holder());
|
| - TestNode* imp = WTF::getPtr(proxyImp->locationReplaceable());
|
| + RefPtr<TestNode> imp = WTF::getPtr(proxyImp->locationReplaceable());
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
|
|