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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8GCController.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/V8GCController.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp b/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
index 43a67b6a4f3c6ba79b5b3700d04f99291e01f479..f12153a5307ca89a9de7856d5b0bc53e9c1a2ab7 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
@@ -200,7 +200,7 @@ class MajorGCWrapperVisitor : public v8::PersistentHandleVisitor {
m_isolate->SetObjectGroupId(
*value, v8::UniqueId(reinterpret_cast<intptr_t>(root)));
if (m_constructRetainedObjectInfos)
- m_groupsWhichNeedRetainerInfo.append(root);
+ m_groupsWhichNeedRetainerInfo.push_back(root);
} else if (classId == WrapperTypeInfo::ObjectClassId) {
if (!RuntimeEnabledFeatures::traceWrappablesEnabled()) {
type->visitDOMWrapper(m_isolate, toScriptWrappable(wrapper),

Powered by Google App Engine
This is Rietveld 408576698