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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.h

Issue 2574773002: Migrate WTF::Vector::append() to ::push_back() [part 4 of N] (Closed)
Patch Set: rebase 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/dom/custom/V0CustomElementCallbackQueue.h
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.h
index 97ffa2ff4e5d8c89e3d9b225230bf2748063e7e5..d52b2c85d2bcf8c52a1642812256e482360d42c9 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.h
@@ -60,7 +60,7 @@ class V0CustomElementCallbackQueue
bool processInElementQueue(ElementQueueId);
void append(V0CustomElementProcessingStep* invocation) {
- m_queue.append(invocation);
+ m_queue.push_back(invocation);
}
bool inCreatedCallback() const { return m_inCreatedCallback; }

Powered by Google App Engine
This is Rietveld 408576698