| Index: third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| index 9875c6b5a02efa29f95d638a0e1509f6bf38eb38..bd748901bbd5c5f17f3e99944c07febdd67c323f 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| @@ -1998,7 +1998,7 @@ LayoutBlock* LayoutBlock::createAnonymousWithParentAndDisplay(
|
| ComputedStyle::createAnonymousStyleWithDisplay(parent->styleRef(),
|
| newDisplay);
|
| parent->updateAnonymousChildStyle(*newBox, *newStyle);
|
| - newBox->setStyle(newStyle.release());
|
| + newBox->setStyle(std::move(newStyle));
|
| return newBox;
|
| }
|
|
|
|
|