| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "core/dom/custom/CustomElementDescriptor.h" | 34 #include "core/dom/custom/CustomElementDescriptor.h" |
| 35 #include "core/dom/custom/CustomElementDescriptorHash.h" | 35 #include "core/dom/custom/CustomElementDescriptorHash.h" |
| 36 #include "core/dom/custom/CustomElementObserver.h" | 36 #include "core/dom/custom/CustomElementObserver.h" |
| 37 #include "wtf/HashMap.h" | 37 #include "wtf/HashMap.h" |
| 38 #include "wtf/LinkedHashSet.h" | 38 #include "wtf/LinkedHashSet.h" |
| 39 #include "wtf/Noncopyable.h" | 39 #include "wtf/Noncopyable.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class CustomElementUpgradeCandidateMap final : public CustomElementObserver { | 43 class CustomElementUpgradeCandidateMap final : public CustomElementObserver { |
| 44 USING_FAST_MALLOC_WILL_BE_REMOVED(CustomElementUpgradeCandidateMap); | |
| 45 WTF_MAKE_NONCOPYABLE(CustomElementUpgradeCandidateMap); | 44 WTF_MAKE_NONCOPYABLE(CustomElementUpgradeCandidateMap); |
| 46 public: | 45 public: |
| 47 static PassOwnPtrWillBeRawPtr<CustomElementUpgradeCandidateMap> create(); | 46 static RawPtr<CustomElementUpgradeCandidateMap> create(); |
| 48 ~CustomElementUpgradeCandidateMap() override; | 47 ~CustomElementUpgradeCandidateMap() override; |
| 49 | 48 |
| 50 // API for CustomElementRegistrationContext to save and take candidates | 49 // API for CustomElementRegistrationContext to save and take candidates |
| 51 | 50 |
| 52 typedef WillBeHeapLinkedHashSet<RawPtrWillBeWeakMember<Element>> ElementSet; | 51 typedef HeapLinkedHashSet<WeakMember<Element>> ElementSet; |
| 53 | 52 |
| 54 void add(const CustomElementDescriptor&, Element*); | 53 void add(const CustomElementDescriptor&, Element*); |
| 55 PassOwnPtrWillBeRawPtr<ElementSet> takeUpgradeCandidatesFor(const CustomElem
entDescriptor&); | 54 RawPtr<ElementSet> takeUpgradeCandidatesFor(const CustomElementDescriptor&); |
| 56 | 55 |
| 57 DECLARE_VIRTUAL_TRACE(); | 56 DECLARE_VIRTUAL_TRACE(); |
| 58 | 57 |
| 59 private: | 58 private: |
| 60 CustomElementUpgradeCandidateMap() { } | 59 CustomElementUpgradeCandidateMap() { } |
| 61 | 60 |
| 62 void elementWasDestroyed(Element*) override; | 61 void elementWasDestroyed(Element*) override; |
| 63 | 62 |
| 64 typedef WillBeHeapHashMap<RawPtrWillBeWeakMember<Element>, CustomElementDesc
riptor> UpgradeCandidateMap; | 63 typedef HeapHashMap<WeakMember<Element>, CustomElementDescriptor> UpgradeCan
didateMap; |
| 65 UpgradeCandidateMap m_upgradeCandidates; | 64 UpgradeCandidateMap m_upgradeCandidates; |
| 66 | 65 |
| 67 typedef WillBeHeapHashMap<CustomElementDescriptor, OwnPtrWillBeMember<Elemen
tSet>> UnresolvedDefinitionMap; | 66 typedef HeapHashMap<CustomElementDescriptor, Member<ElementSet>> UnresolvedD
efinitionMap; |
| 68 UnresolvedDefinitionMap m_unresolvedDefinitions; | 67 UnresolvedDefinitionMap m_unresolvedDefinitions; |
| 69 }; | 68 }; |
| 70 | 69 |
| 71 } // namespace blink | 70 } // namespace blink |
| 72 | 71 |
| 73 #endif // CustomElementUpgradeCandidateMap_h | 72 #endif // CustomElementUpgradeCandidateMap_h |
| OLD | NEW |