| Index: third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h b/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
|
| index 845b4897b6a916a13506bcd9a58aa7df06eb8172..bdc286309cc243244c33fea40ccd2b3381d9fa98 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
|
| @@ -47,8 +47,8 @@ public:
|
| unsigned groupSizeFor(const HTMLInputElement*) const;
|
|
|
| private:
|
| - using NameToGroupMap = WillBeHeapHashMap<AtomicString, OwnPtrWillBeMember<RadioButtonGroup>, CaseFoldingHash>;
|
| - OwnPtrWillBeMember<NameToGroupMap> m_nameToGroupMap;
|
| + using NameToGroupMap = HeapHashMap<AtomicString, Member<RadioButtonGroup>, CaseFoldingHash>;
|
| + Member<NameToGroupMap> m_nameToGroupMap;
|
| };
|
|
|
| } // namespace blink
|
|
|