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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.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/CustomElementReactionStack.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
index 60515bd1d48bdc217d27858be7d0071646018184..32d9b26944d6ddacdd1074b6f6ea5f25c6859c1d 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
@@ -42,7 +42,7 @@ void CustomElementReactionStack::popInvokingReactions() {
ElementQueue* queue = m_stack.last();
if (queue)
invokeReactions(*queue);
- m_stack.removeLast();
+ m_stack.pop_back();
}
void CustomElementReactionStack::invokeReactions(ElementQueue& queue) {

Powered by Google App Engine
This is Rietveld 408576698