| 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 e8195e90beb6ba30acf91563244f9fd807b29af2..dd75dc792506a9ad42cbe95ba07b312ff959ab06 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| @@ -469,8 +469,8 @@ void LayoutTableCell::ensureIsReadyForPaintInvalidation() {
|
| if (!usesCompositedCellDisplayItemClients())
|
| return;
|
| if (!m_rowBackgroundDisplayItemClient) {
|
| - m_rowBackgroundDisplayItemClient =
|
| - wrapUnique(new LayoutTableCell::RowBackgroundDisplayItemClient(*this));
|
| + m_rowBackgroundDisplayItemClient = WTF::wrapUnique(
|
| + new LayoutTableCell::RowBackgroundDisplayItemClient(*this));
|
| }
|
| }
|
|
|
| @@ -1330,7 +1330,7 @@ void LayoutTableCell::collectBorderValues(
|
| m_collapsedBorderValues = nullptr;
|
| } else if (!m_collapsedBorderValues) {
|
| changed = true;
|
| - m_collapsedBorderValues = wrapUnique(new CollapsedBorderValues(
|
| + m_collapsedBorderValues = WTF::wrapUnique(new CollapsedBorderValues(
|
| *table(), newValues.startBorder(), newValues.endBorder(),
|
| newValues.beforeBorder(), newValues.afterBorder()));
|
| } else {
|
|
|