| Index: third_party/WebKit/Source/bindings/templates/interface_base.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/templates/interface_base.cpp b/third_party/WebKit/Source/bindings/templates/interface_base.cpp
|
| index c242de81831bb596d08a86cca719f4f9883c814f..3ee994a8caa6bdec749b5ef1dc064f0cb06b8071 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/interface_base.cpp
|
| +++ b/third_party/WebKit/Source/bindings/templates/interface_base.cpp
|
| @@ -335,13 +335,11 @@ static void install{{v8_class}}Template(v8::Local<v8::FunctionTemplate> interfac
|
|
|
| {%- if has_array_iterator %}{{newline}}
|
| // Array iterator
|
| - {% filter runtime_enabled('RuntimeEnabledFeatures::iterableCollectionsEnabled') %}
|
| {% if is_global %}
|
| instanceTemplate->SetIntrinsicDataProperty(v8::Symbol::GetIterator(isolate), v8::kArrayProto_values, v8::DontEnum);
|
| {% else %}
|
| prototypeTemplate->SetIntrinsicDataProperty(v8::Symbol::GetIterator(isolate), v8::kArrayProto_values, v8::DontEnum);
|
| {% endif %}
|
| - {% endfilter %}
|
| {% endif %}
|
|
|
| {%- set runtime_enabled_features = dict() %}
|
|
|