| Index: third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp b/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| index 401dbeb0e2c9587278260e6c568a84180373b70b..d13f7b18d23b392f75bfe45936a8d83802059437 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| @@ -1433,7 +1433,7 @@ LayoutTableCell* LayoutTableCell::createAnonymousWithParent(
|
| RefPtr<ComputedStyle> newStyle =
|
| ComputedStyle::createAnonymousStyleWithDisplay(parent->styleRef(),
|
| EDisplay::TableCell);
|
| - newCell->setStyle(newStyle.release());
|
| + newCell->setStyle(std::move(newStyle));
|
| return newCell;
|
| }
|
|
|
|
|