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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp

Issue 2554693003: Migrate WTF::Vector::append() to ::push_back() [part 1 of N] (Closed)
Patch Set: rebase 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/bindings/core/v8/V8PerContextData.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp b/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp
index 5fcbae59b71792bbaf1368cd91c1ae45a8a1dfdc..56a922d919709a087e40c99e0d006a5f97ea47f6 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp
@@ -172,7 +172,7 @@ v8::Local<v8::Object> V8PerContextData::prototypeForType(
void V8PerContextData::addCustomElementBinding(
std::unique_ptr<V0CustomElementBinding> binding) {
- m_customElementBindings.append(std::move(binding));
+ m_customElementBindings.push_back(std::move(binding));
}
v8::Local<v8::Value> V8PerContextData::compiledPrivateScript(String className) {

Powered by Google App Engine
This is Rietveld 408576698