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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp

Issue 2554693003: Migrate WTF::Vector::append() to ::push_back() [part 1 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/bindings/core/v8/ScheduledAction.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
index f0c1db8d9b36888368e3114af066449d64f0a572..aace7e2ae0c3526903763cd951e0ea8539da7b97 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
@@ -179,7 +179,7 @@ void ScheduledAction::createLocalHandlesForArgs(
Vector<v8::Local<v8::Value>>* handles) {
handles->reserveCapacity(m_info.Size());
for (size_t i = 0; i < m_info.Size(); ++i)
- handles->append(m_info.Get(i));
+ handles->push_back(m_info.Get(i));
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698