| Index: Source/core/dom/CustomElementUpgradeCandidateMap.h
|
| diff --git a/Source/core/dom/CustomElementUpgradeCandidateMap.h b/Source/core/dom/CustomElementUpgradeCandidateMap.h
|
| index 84d3d9186c13e27ccb19e3dca35b6d30ee5dd1c9..2b9f9f5d4ca535ec65efbcbc8dbd42e0edd083d5 100644
|
| --- a/Source/core/dom/CustomElementUpgradeCandidateMap.h
|
| +++ b/Source/core/dom/CustomElementUpgradeCandidateMap.h
|
| @@ -49,18 +49,17 @@ public:
|
| typedef HashSet<Element*> ElementSet;
|
|
|
| void add(CustomElementDefinition::CustomElementKind, const AtomicString& type, Element*);
|
| - bool contains(Element*) const;
|
| void remove(Element*);
|
| ElementSet takeUpgradeCandidatesFor(CustomElementDefinition*);
|
|
|
| private:
|
| typedef std::pair<CustomElementDefinition::CustomElementKind, AtomicString> RequiredDefinition;
|
| - typedef HashMap<Element*, RequiredDefinition> UnresolvedElementMap;
|
| + typedef HashMap<Element*, RequiredDefinition> UpgradeCandidateMap;
|
| typedef HashMap<AtomicString, ElementSet> UnresolvedDefinitionMap;
|
|
|
| bool matches(CustomElementDefinition*, Element*);
|
|
|
| - UnresolvedElementMap m_unresolvedElements;
|
| + UpgradeCandidateMap m_upgradeCandidates;
|
| UnresolvedDefinitionMap m_unresolvedDefinitions;
|
| };
|
|
|
|
|