| Index: third_party/WebKit/Source/core/layout/LayoutScrollbar.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutScrollbar.h b/third_party/WebKit/Source/core/layout/LayoutScrollbar.h
|
| index 005f0ad275893aef3edc935ce2f5ade37fd1c033..be6748ffe1c530395f86acf34be65655c34201f1 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutScrollbar.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutScrollbar.h
|
| @@ -59,10 +59,10 @@ class LayoutScrollbar final : public Scrollbar {
|
| bool isOverlayScrollbar() const override { return false; }
|
|
|
| LayoutScrollbarPart* getPart(ScrollbarPart partType) {
|
| - return m_parts.get(partType);
|
| + return m_parts.at(partType);
|
| }
|
| const LayoutScrollbarPart* getPart(ScrollbarPart partType) const {
|
| - return m_parts.get(partType);
|
| + return m_parts.at(partType);
|
| }
|
|
|
| void invalidateDisplayItemClientsOfScrollbarParts();
|
|
|