| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |