| Index: third_party/WebKit/Source/core/frame/FrameView.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| index 20aa9f46aa577f6803618959df897b0057191936..ad739d734bc2c4d142e90cd7dc3f7881f7255d1e 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -2723,7 +2723,7 @@ void FrameView::updateScrollCorner() {
|
| if (cornerStyle) {
|
| if (!m_scrollCorner)
|
| m_scrollCorner = LayoutScrollbarPart::createAnonymous(doc, this);
|
| - m_scrollCorner->setStyleWithWritingModeOfParent(cornerStyle.release());
|
| + m_scrollCorner->setStyleWithWritingModeOfParent(std::move(cornerStyle));
|
| setScrollCornerNeedsPaintInvalidation();
|
| } else if (m_scrollCorner) {
|
| m_scrollCorner->destroy();
|
|
|