| 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) {
|
|
|