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

Unified Diff: third_party/WebKit/Source/core/testing/DeathAwareScriptWrappable.h

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase Created 3 years, 11 months 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/testing/DeathAwareScriptWrappable.h
diff --git a/third_party/WebKit/Source/core/testing/DeathAwareScriptWrappable.h b/third_party/WebKit/Source/core/testing/DeathAwareScriptWrappable.h
index ff3b2045f10ad1548c66b299fa96e3e2e8700019..ee3e835d167c05d668468b5a957367e3fd04fa70 100644
--- a/third_party/WebKit/Source/core/testing/DeathAwareScriptWrappable.h
+++ b/third_party/WebKit/Source/core/testing/DeathAwareScriptWrappable.h
@@ -66,7 +66,7 @@ class DeathAwareScriptWrappable
}
void addWrappedVectorDependency(DeathAwareScriptWrappable* dependency) {
- m_wrappedVectorDependency.append(Wrapper(this, dependency));
+ m_wrappedVectorDependency.push_back(Wrapper(this, dependency));
}
void addWrappedHashMapDependency(DeathAwareScriptWrappable* key,

Powered by Google App Engine
This is Rietveld 408576698