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

Unified Diff: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: 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/modules/csspaint/PaintWorkletGlobalScope.cpp
diff --git a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
index e8b53dbc12661dec5cd34064fa434c41dba2baa9..452cd79e4b5f44cf4ed20fdcdaa21a19624527cc 100644
--- a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
@@ -96,9 +96,9 @@ void PaintWorkletGlobalScope::registerPaint(const String& name,
for (const auto& property : properties) {
CSSPropertyID propertyID = cssPropertyID(property);
if (propertyID == CSSPropertyVariable) {
- customInvalidationProperties.append(property);
+ customInvalidationProperties.push_back(property);
} else if (propertyID != CSSPropertyInvalid) {
- nativeInvalidationProperties.append(propertyID);
+ nativeInvalidationProperties.push_back(propertyID);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698