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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableCell.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/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 {
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTable.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698