Changeset 119477 in webkit
- Timestamp:
- Jun 5, 2012, 3:25:59 AM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
dom/SelectorQuery.cpp (modified) (1 diff)
-
dom/SelectorQuery.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r119474 r119477 1 2012-06-05 Kentaro Hara <haraken@chromium.org> 2 3 Remove unused methods from SelectorQuery.h 4 https://bugs.webkit.org/show_bug.cgi?id=88289 5 6 Reviewed by Antti Koivisto. 7 8 This patch removes SelectorDataList::size() and 9 SelectorDataList::SelectorDataList(). 10 SelectorDataList::size() is not used by anybody. 11 SelectorDataList::SelectorDataList() can be auto-generated 12 by a compiler. 13 14 No tests. No change in behavior. 15 16 * dom/SelectorQuery.cpp: 17 * dom/SelectorQuery.h: 18 (SelectorDataList): 19 1 20 2012-06-05 Kent Tamura <tkent@chromium.org> 2 21 -
trunk/Source/WebCore/dom/SelectorQuery.cpp
r119399 r119477 36 36 namespace WebCore { 37 37 38 SelectorDataList::SelectorDataList()39 {40 }41 42 38 void SelectorDataList::initialize(const CSSSelectorList& selectorList) 43 39 { -
trunk/Source/WebCore/dom/SelectorQuery.h
r119399 r119477 42 42 class SelectorDataList { 43 43 public: 44 SelectorDataList();45 46 44 void initialize(const CSSSelectorList&); 47 48 int size() const { return m_selectors.size(); }49 50 45 bool matches(const SelectorChecker&, Element*) const; 51 46 PassRefPtr<NodeList> queryAll(const SelectorChecker&, Node* rootNode) const;
Note:
See TracChangeset
for help on using the changeset viewer.