Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(493)

Side by Side Diff: third_party/WebKit/Source/core/dom/SelectorQuery.h

Issue 2317083003: Use type aliases for StaticElementList/StaticNodeList (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2011, 2013 Apple Inc. All rights reserved.
3 * Copyright (C) 2014 Samsung Electronics. All rights reserved. 3 * Copyright (C) 2014 Samsung Electronics. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 24 matching lines...) Expand all
35 #include <memory> 35 #include <memory>
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class CSSSelector; 39 class CSSSelector;
40 class ContainerNode; 40 class ContainerNode;
41 class Document; 41 class Document;
42 class Element; 42 class Element;
43 class ExceptionState; 43 class ExceptionState;
44 template <typename NodeType> class StaticNodeTypeList; 44 template <typename NodeType> class StaticNodeTypeList;
45 typedef StaticNodeTypeList<Element> StaticElementList; 45 using StaticElementList = StaticNodeTypeList<Element>;
46 46
47 class SelectorDataList { 47 class SelectorDataList {
48 DISALLOW_NEW(); 48 DISALLOW_NEW();
49 public: 49 public:
50 void initialize(const CSSSelectorList&); 50 void initialize(const CSSSelectorList&);
51 bool matches(Element&) const; 51 bool matches(Element&) const;
52 Element* closest(Element&) const; 52 Element* closest(Element&) const;
53 StaticElementList* queryAll(ContainerNode& rootNode) const; 53 StaticElementList* queryAll(ContainerNode& rootNode) const;
54 Element* queryFirst(ContainerNode& rootNode) const; 54 Element* queryFirst(ContainerNode& rootNode) const;
55 55
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 SelectorQuery* add(const AtomicString&, const Document&, ExceptionState&); 108 SelectorQuery* add(const AtomicString&, const Document&, ExceptionState&);
109 void invalidate(); 109 void invalidate();
110 110
111 private: 111 private:
112 HashMap<AtomicString, std::unique_ptr<SelectorQuery>> m_entries; 112 HashMap<AtomicString, std::unique_ptr<SelectorQuery>> m_entries;
113 }; 113 };
114 114
115 } // namespace blink 115 } // namespace blink
116 116
117 #endif 117 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/MutationRecord.h ('k') | third_party/WebKit/Source/core/dom/StaticNodeList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698