Chromium Code Reviews| Index: third_party/WebKit/Source/build/scripts/make_computed_style_base.py |
| diff --git a/third_party/WebKit/Source/build/scripts/make_computed_style_base.py b/third_party/WebKit/Source/build/scripts/make_computed_style_base.py |
| index f961e6689207fd584eff1db2d36bde10d3152a1f..79ed0352cde62337e55f1807a49e75331c690d3f 100755 |
| --- a/third_party/WebKit/Source/build/scripts/make_computed_style_base.py |
| +++ b/third_party/WebKit/Source/build/scripts/make_computed_style_base.py |
| @@ -148,7 +148,7 @@ class Field(object): |
| # TODO(nainar): Method name generation is inconsistent. Fix. |
| self.getter_method_name = getter_method_name |
| self.setter_method_name = setter_method_name |
| - self.internal_getter_method_name = method_name(join_name(getter_method_name, 'Internal')) |
| + self.internal_getter_method_name = method_name(join_name(self.name, 'Internal')) |
| self.internal_mutable_method_name = method_name(join_name('Mutable', name_for_methods, 'Internal')) |
| self.internal_setter_method_name = method_name(join_name(setter_method_name, 'Internal')) |
|
alancutter (OOO until 2018)
2017/05/19 01:55:23
Should the same apply to the setter?
|
| self.initial_method_name = initial_method_name |