| Index: Source/bindings/tests/results/V8TestObject.cpp
|
| ===================================================================
|
| --- Source/bindings/tests/results/V8TestObject.cpp (revision 169175)
|
| +++ Source/bindings/tests/results/V8TestObject.cpp (working copy)
|
| @@ -2874,7 +2874,7 @@
|
| static void locationAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObj* proxyImp = V8TestObject::toNative(info.Holder());
|
| - TestNode* imp = proxyImp->location();
|
| + RefPtr<TestNode> imp = proxyImp->location();
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
| @@ -2904,7 +2904,7 @@
|
| static void locationWithExceptionAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestObj* proxyImp = V8TestObject::toNative(info.Holder());
|
| - TestNode* imp = proxyImp->locationWithException();
|
| + RefPtr<TestNode> imp = proxyImp->locationWithException();
|
| if (!imp)
|
| return;
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
|
|