| Index: Source/bindings/tests/results/V8TestSpecialOperations.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestSpecialOperations.cpp b/Source/bindings/tests/results/V8TestSpecialOperations.cpp
|
| index ad127bbf579ef951c9e10860b405e5a4fb85f8e0..def0c5852c3ab0ef7ac4fe44917a1e84c972902a 100644
|
| --- a/Source/bindings/tests/results/V8TestSpecialOperations.cpp
|
| +++ b/Source/bindings/tests/results/V8TestSpecialOperations.cpp
|
| @@ -55,7 +55,7 @@ static void namedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| bool result0Enabled = false;
|
| RefPtr<Node> result0;
|
| bool result1Enabled = false;
|
| - RefPtr<NodeList> result1;
|
| + RefPtrWillBeRawPtr<NodeList> result1;
|
| impl->getItem(name, result0Enabled, result0, result1Enabled, result1);
|
| if (result0Enabled) {
|
| v8SetReturnValue(info, result0.release());
|
| @@ -82,7 +82,7 @@ static void namedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCa
|
| bool result0Enabled = false;
|
| RefPtr<Node> result0;
|
| bool result1Enabled = false;
|
| - RefPtr<NodeList> result1;
|
| + RefPtrWillBeRawPtr<NodeList> result1;
|
| impl->getItem(propertyName, result0Enabled, result0, result1Enabled, result1);
|
| if (!result0Enabled && !result1Enabled)
|
| return;
|
|
|