Changeset 103855 in webkit for trunk/Source/WebCore/html/HTMLSelectElement.h
- Timestamp:
- Dec 30, 2011, 6:43:33 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/html/HTMLSelectElement.h
r102419 r103855 27 27 #define HTMLSelectElement_h 28 28 29 #include "CollectionCache.h"30 29 #include "Event.h" 31 30 #include "HTMLFormControlElement.h" 31 #include "HTMLOptionsCollection.h" 32 32 #include <wtf/Vector.h> 33 33 … … 84 84 Node* namedItem(const AtomicString& name); 85 85 Node* item(unsigned index); 86 87 CollectionCache* collectionInfo() { m_collectionInfo.checkConsistency(); return &m_collectionInfo; }88 86 89 87 void scrollToSelection(); … … 177 175 virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0); 178 176 179 CollectionCache m_collectionInfo; 177 RefPtr<HTMLOptionsCollection> m_optionsCollection; 178 180 179 // m_listItems contains HTMLOptionElement, HTMLOptGroupElement, and HTMLHRElement objects. 181 180 mutable Vector<HTMLElement*> m_listItems;
Note:
See TracChangeset
for help on using the changeset viewer.