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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSVariableReferenceValueTest.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/cssom/CSSVariableReferenceValueTest.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSVariableReferenceValueTest.cpp b/third_party/WebKit/Source/core/css/cssom/CSSVariableReferenceValueTest.cpp
index 4cbe695e73b36d743320e02e838aff3baf6574c6..5566fc5e633e94ce8e09b47d96eac3e7763676c6 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSVariableReferenceValueTest.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/CSSVariableReferenceValueTest.cpp
@@ -22,12 +22,12 @@ TEST(CSSVariableReferenceValueTest, EmptyList) {
TEST(CSSVariableReferenceValueTest, MixedList) {
HeapVector<StringOrCSSVariableReferenceValue> fragments;
- fragments.append(StringOrCSSVariableReferenceValue::fromString("string"));
- fragments.append(
+ fragments.push_back(StringOrCSSVariableReferenceValue::fromString("string"));
+ fragments.push_back(
StringOrCSSVariableReferenceValue::fromCSSVariableReferenceValue(
CSSStyleVariableReferenceValue::create(
"Variable", CSSUnparsedValue::fromString("Fallback"))));
- fragments.append(StringOrCSSVariableReferenceValue());
+ fragments.push_back(StringOrCSSVariableReferenceValue());
CSSUnparsedValue* unparsedValue = CSSUnparsedValue::create(fragments);

Powered by Google App Engine
This is Rietveld 408576698