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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp

Issue 2459003003: WTF/std normalization: replace WTF::Vector::removeLast with ::pop_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/core/dom/custom/CustomElementDefinition.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
index 2d3925b55523cc2d7d6e357b1fd10764117b31bc..7e1a51f65582ca4958ef80c6df9a15a7b353cf67 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
@@ -135,7 +135,7 @@ CustomElementDefinition::ConstructionStackScope::~ConstructionStackScope() {
DCHECK(!m_constructionStack.last() ||
m_constructionStack.last() == m_element);
DCHECK_EQ(m_constructionStack.size(), m_depth); // It's a *stack*.
- m_constructionStack.removeLast();
+ m_constructionStack.pop_back();
}
// https://html.spec.whatwg.org/multipage/scripting.html#concept-upgrade-an-element

Powered by Google App Engine
This is Rietveld 408576698