Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTable.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutGrid.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableCell.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698