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

Unified Diff: third_party/WebKit/Source/core/events/EventSender.h

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/EventSender.h
diff --git a/third_party/WebKit/Source/core/events/EventSender.h b/third_party/WebKit/Source/core/events/EventSender.h
index b6a2319d40d3953189603087d64ef1f6a4ea5780..1e6f5a4fa93d5f94682d92500af12153cb78f3a2 100644
--- a/third_party/WebKit/Source/core/events/EventSender.h
+++ b/third_party/WebKit/Source/core/events/EventSender.h
@@ -76,7 +76,7 @@ EventSender<T>::EventSender(const AtomicString& eventType)
template <typename T>
void EventSender<T>::dispatchEventSoon(T* sender) {
- m_dispatchSoonList.append(sender);
+ m_dispatchSoonList.push_back(sender);
if (!m_timer.isActive())
m_timer.startOneShot(0, BLINK_FROM_HERE);
}
« no previous file with comments | « third_party/WebKit/Source/core/events/EventPath.cpp ('k') | third_party/WebKit/Source/core/events/EventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698