| Index: third_party/WebKit/Source/core/layout/LayoutMenuList.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutMenuList.cpp b/third_party/WebKit/Source/core/layout/LayoutMenuList.cpp
|
| index 10c0c24eef24546c0529a9e78f363818d854d2b2..866f3b680c2bd168e5b47e4d3d86821f2c7caa39 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutMenuList.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutMenuList.cpp
|
| @@ -165,7 +165,7 @@ void LayoutMenuList::styleDidChange(StyleDifference diff, const ComputedStyle* o
|
| void LayoutMenuList::updateOptionsWidth()
|
| {
|
| float maxOptionWidth = 0;
|
| - const WillBeHeapVector<RawPtrWillBeMember<HTMLElement>>& listItems = selectElement()->listItems();
|
| + const HeapVector<Member<HTMLElement>>& listItems = selectElement()->listItems();
|
| int size = listItems.size();
|
|
|
| for (int i = 0; i < size; ++i) {
|
| @@ -220,7 +220,7 @@ void LayoutMenuList::updateText()
|
| void LayoutMenuList::setTextFromOption(int optionIndex)
|
| {
|
| HTMLSelectElement* select = selectElement();
|
| - const WillBeHeapVector<RawPtrWillBeMember<HTMLElement>>& listItems = select->listItems();
|
| + const HeapVector<Member<HTMLElement>>& listItems = select->listItems();
|
| const int size = listItems.size();
|
|
|
| String text = emptyString();
|
|
|