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 cb63f2ce4c19a644549fe31cf549e17cdc7e5c95..9ef0d6f167d0355111ad05520d1015979e039367 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 = makeUnique<TableLayoutAlgorithmFixed>(this); |
+ m_tableLayout = WTF::makeUnique<TableLayoutAlgorithmFixed>(this); |
else |
- m_tableLayout = makeUnique<TableLayoutAlgorithmAuto>(this); |
+ m_tableLayout = WTF::makeUnique<TableLayoutAlgorithmAuto>(this); |
} |
// If border was changed, invalidate collapsed borders cache. |