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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h

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/CSSUnparsedValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
index c3b62213d13c71178250980bb196cd29bd50381c..ad98b50b40bca403c700cb825747836db6421e3c 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
@@ -50,7 +50,7 @@ class CORE_EXPORT CSSUnparsedValue final
private:
static CSSUnparsedValue* fromString(String string) {
HeapVector<StringOrCSSVariableReferenceValue> fragments;
- fragments.append(StringOrCSSVariableReferenceValue::fromString(string));
+ fragments.push_back(StringOrCSSVariableReferenceValue::fromString(string));
return create(fragments);
}

Powered by Google App Engine
This is Rietveld 408576698