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

Unified Diff: third_party/WebKit/Source/core/events/ScopedEventQueue.cpp

Issue 2585283002: Migrate WTF::Vector::append() to ::push_back() [part 6 of N] (Closed)
Patch Set: 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/events/ScopedEventQueue.cpp
diff --git a/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp b/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
index 83046ea5133430d985def9ad37d56e12ec368fa7..90ebf8df36aa49af5402e692774e70d51aa384a7 100644
--- a/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
+++ b/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
@@ -58,7 +58,7 @@ void ScopedEventQueue::initialize() {
void ScopedEventQueue::enqueueEventDispatchMediator(
EventDispatchMediator* mediator) {
if (shouldQueueEvents())
- m_queuedEventDispatchMediators.append(mediator);
+ m_queuedEventDispatchMediators.push_back(mediator);
else
dispatchEvent(mediator);
}

Powered by Google App Engine
This is Rietveld 408576698