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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp

Issue 2502413004: WTF/std normalization: replace WTF::Vector::last with ::back (Closed)
Patch Set: rebase Created 4 years, 1 month 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/modules/accessibility/AXTableColumn.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp b/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp
index 23999bdd1acc68e04dccb31a4bb9a090ab2d4c2e..b629b13216be985df33ae6c2d4721fef8ddfc284 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp
@@ -137,7 +137,7 @@ void AXTableColumn::addChildren() {
continue;
// make sure the last one isn't the same as this one (rowspan cells)
- if (m_children.size() > 0 && m_children.last() == cell)
+ if (m_children.size() > 0 && m_children.back() == cell)
continue;
m_children.append(cell);

Powered by Google App Engine
This is Rietveld 408576698