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

Unified Diff: third_party/WebKit/Source/core/css/resolver/MatchResultTest.cpp

Issue 2566403003: Migrate WTF::Vector::append() to ::push_back() [part 3 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/css/resolver/MatchResultTest.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/MatchResultTest.cpp b/third_party/WebKit/Source/core/css/resolver/MatchResultTest.cpp
index f21378cc9579dcd6e1640fac18bd3f87cff6a70c..f148f4fecb74c1c6738a9ef3c9ef88f89fce68c0 100644
--- a/third_party/WebKit/Source/core/css/resolver/MatchResultTest.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/MatchResultTest.cpp
@@ -23,7 +23,7 @@ class MatchResultTest : public ::testing::Test {
void MatchResultTest::SetUp() {
for (unsigned i = 0; i < 6; i++)
- propertySets.append(MutableStylePropertySet::create(HTMLQuirksMode));
+ propertySets.push_back(MutableStylePropertySet::create(HTMLQuirksMode));
}
void testMatchedPropertiesRange(const MatchedPropertiesRange& range,

Powered by Google App Engine
This is Rietveld 408576698