| Index: Source/core/html/HTMLFormElement.h
|
| diff --git a/Source/core/html/HTMLFormElement.h b/Source/core/html/HTMLFormElement.h
|
| index 5ea8a7a4a5ef80ffa93d709ec87d3bf5e586f03d..743997f2ce8264d858334a35268cef1071bca284 100644
|
| --- a/Source/core/html/HTMLFormElement.h
|
| +++ b/Source/core/html/HTMLFormElement.h
|
| @@ -154,10 +154,10 @@ private:
|
| void addToPastNamesMap(Element*, const AtomicString& pastName);
|
| void removeFromPastNamesMap(HTMLElement&);
|
|
|
| - typedef HashMap<AtomicString, Element*> PastNamesMap;
|
| + typedef WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<Element> > PastNamesMap;
|
|
|
| FormSubmission::Attributes m_attributes;
|
| - OwnPtr<PastNamesMap> m_pastNamesMap;
|
| + OwnPtrWillBeMember<PastNamesMap> m_pastNamesMap;
|
|
|
| RadioButtonGroupScope m_radioButtonGroupScope;
|
|
|
|
|