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

Unified Diff: third_party/WebKit/Source/core/frame/csp/MediaListDirectiveTest.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/frame/csp/MediaListDirectiveTest.cpp
diff --git a/third_party/WebKit/Source/core/frame/csp/MediaListDirectiveTest.cpp b/third_party/WebKit/Source/core/frame/csp/MediaListDirectiveTest.cpp
index 16b7565d713822b8354fe0e4c124ff1c4d3a98b9..04f67f2d52e40c8cba413b77242389ba5e22e1a7 100644
--- a/third_party/WebKit/Source/core/frame/csp/MediaListDirectiveTest.cpp
+++ b/third_party/WebKit/Source/core/frame/csp/MediaListDirectiveTest.cpp
@@ -139,7 +139,7 @@ TEST_F(MediaListDirectiveTest, Subsumes) {
for (const auto& test : cases) {
HeapVector<Member<MediaListDirective>> policiesB;
for (const auto& policy : test.policiesB) {
- policiesB.append(
+ policiesB.push_back(
new MediaListDirective("plugin-types", policy, csp.get()));
}

Powered by Google App Engine
This is Rietveld 408576698