| Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| index 6f0b62e686cc00807ab2b155b451a7adfd20c415..9ae716577e0dd6ffa1862617eff1887fbd144cd2 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -92,9 +92,9 @@ void LayoutTable::styleDidChange(StyleDifference diff,
|
| // explicit width is specified on the table. Auto width implies auto table
|
| // layout.
|
| if (style()->isFixedTableLayout())
|
| - m_tableLayout = wrapUnique(new TableLayoutAlgorithmFixed(this));
|
| + m_tableLayout = makeUnique<TableLayoutAlgorithmFixed>(this);
|
| else
|
| - m_tableLayout = wrapUnique(new TableLayoutAlgorithmAuto(this));
|
| + m_tableLayout = makeUnique<TableLayoutAlgorithmAuto>(this);
|
| }
|
|
|
| // If border was changed, invalidate collapsed borders cache.
|
|
|