| Index: Source/bindings/v8/custom/V8WindowCustom.cpp | 
| diff --git a/Source/bindings/v8/custom/V8WindowCustom.cpp b/Source/bindings/v8/custom/V8WindowCustom.cpp | 
| index b0dfa0e266c4e0d337f1ace044915335a5f4c4b5..fd089a8d5f2982b89e071f3f956a4a8969cd4916 100644 | 
| --- a/Source/bindings/v8/custom/V8WindowCustom.cpp | 
| +++ b/Source/bindings/v8/custom/V8WindowCustom.cpp | 
| @@ -415,7 +415,7 @@ void V8Window::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::P | 
|  | 
| if (doc && doc->isHTMLDocument()) { | 
| if (toHTMLDocument(doc)->hasNamedItem(propName) || doc->hasElementWithId(propName.impl())) { | 
| -            RefPtr<HTMLCollection> items = doc->windowNamedItems(propName); | 
| +            RefPtrWillBeRawPtr<HTMLCollection> items = doc->windowNamedItems(propName); | 
| if (!items->isEmpty()) { | 
| if (items->hasExactlyOneItem()) { | 
| v8SetReturnValueFast(info, items->item(0), window); | 
|  |