Chromium Code Reviews| Index: Source/bindings/scripts/v8_attributes.py |
| diff --git a/Source/bindings/scripts/v8_attributes.py b/Source/bindings/scripts/v8_attributes.py |
| index 4980307e80e1956d842690cb081b4b05bcd443da..d9622de777eb79acefe09e70dae1297bd489c5ac 100644 |
| --- a/Source/bindings/scripts/v8_attributes.py |
| +++ b/Source/bindings/scripts/v8_attributes.py |
| @@ -521,9 +521,7 @@ def is_expose_js_accessors(interface, attribute): |
| # FIXME: We should move all of the following DOM attributes to prototype |
| # chains. |
|
bashi
2015/06/18 23:50:53
Is this comment still valid?
Yuki
2015/06/19 06:34:48
No. Updated the comment.
|
| - if (has_custom_getter(attribute) or |
| - has_custom_setter(attribute) or |
| - interface.name == 'Window'): |
| + if interface.name == 'Window': |
| return False |
| return is_accessor |