| Index: third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
|
| index d7009da8926ef9d291c860745512eed8fa1bc1c6..a0a47790a96e7f346169d1d677a97245f556c1f6 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
|
| @@ -188,7 +188,7 @@ for (int i = {{argument.index}}; i < info.Length(); ++i) {
|
| {{throw_argument_error(method, argument, "parameter %(index)d is not of type '%(type)s'.")}}
|
| return;
|
| }
|
| - {{argument.name}}.append(V8{{argument.idl_type}}::toImpl(v8::Local<v8::Object>::Cast(info[i])));
|
| + {{argument.name}}.push_back(V8{{argument.idl_type}}::toImpl(v8::Local<v8::Object>::Cast(info[i])));
|
| }
|
| {% elif argument.is_dictionary %}
|
| {% if not argument.use_permissive_dictionary_conversion %}
|
|
|