Index: Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp b/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp |
index 2aba517b372df028f7447d8a4d0059e54ec3d680..c93451e761b93f1b3993f3ef28c5154ce1612ba9 100644 |
--- a/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp |
+++ b/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp |
@@ -43,7 +43,7 @@ namespace WebCore { |
template<class CallbackInfo> |
static v8::Handle<v8::Value> getNamedItems(HTMLAllCollection* collection, AtomicString name, const CallbackInfo& info) |
{ |
- Vector<RefPtr<Element> > namedItems; |
+ WillBeHeapVector<RefPtrWillBeMember<Element> > namedItems; |
collection->namedItems(name, namedItems); |
if (!namedItems.size()) |