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

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

Issue 2653203003: Migrate WTF::Vector::append() to ::push_back() [part 17 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 f68c814166efbe2f93ca781bd1f721fde726a2fa..357f53f4e70cb139cc3732b2e064d57df604c13e 100644
--- a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
@@ -126,7 +126,7 @@ void PaintWorkletGlobalScope::registerPaint(const String& name,
exceptionState.throwTypeError("Invalid argument types.");
return;
}
- inputArgumentTypes.append(syntaxDescriptor);
+ inputArgumentTypes.push_back(syntaxDescriptor);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698