| 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 b61f73cdce319771da30e544d7ffba76b093f437..1e210c4bf3559caae4f3e7d5ae6361d6f53ce8ab 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutMenuList.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutMenuList.cpp
|
| @@ -99,9 +99,10 @@ void LayoutMenuList::AdjustInnerStyle() {
|
|
|
| Length padding_start = Length(
|
| LayoutTheme::GetTheme().PopupInternalPaddingStart(StyleRef()), kFixed);
|
| - Length padding_end = Length(LayoutTheme::GetTheme().PopupInternalPaddingEnd(
|
| - GetFrameView()->GetHostWindow(), StyleRef()),
|
| - kFixed);
|
| + Length padding_end =
|
| + Length(LayoutTheme::GetTheme().PopupInternalPaddingEnd(
|
| + GetFrameView()->GetChromeClient(), StyleRef()),
|
| + kFixed);
|
| inner_style.SetPaddingLeft(StyleRef().Direction() == TextDirection::kLtr
|
| ? padding_start
|
| : padding_end);
|
|
|