| Index: Source/core/html/HTMLAllCollection.h
|
| diff --git a/Source/core/html/HTMLAllCollection.h b/Source/core/html/HTMLAllCollection.h
|
| index 3002c9bc269690f19b80e41a5f1896f1b8a1026b..d301961350e3dcd5f21b5735a9dce4133451ceb9 100644
|
| --- a/Source/core/html/HTMLAllCollection.h
|
| +++ b/Source/core/html/HTMLAllCollection.h
|
| @@ -36,10 +36,14 @@ public:
|
| virtual ~HTMLAllCollection();
|
|
|
| Element* namedItemWithIndex(const AtomicString& name, unsigned index) const;
|
| - void anonymousNamedGetter(const AtomicString& name, bool&, RefPtr<NodeList>&, bool&, RefPtr<Element>&);
|
| + void namedGetter(const AtomicString& name, bool&, RefPtr<NodeList>&, bool&, RefPtr<Element>&);
|
|
|
| private:
|
| HTMLAllCollection(ContainerNode*, CollectionType);
|
| + virtual void supportedPropertyNames(Vector<String>& names) OVERRIDE;
|
| + static bool elementNameShouldBeVisible(const HTMLElement&);
|
| +
|
| + friend class HTMLCollection;
|
| };
|
|
|
| } // namespace WebCore
|
|
|