Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Unified Diff: third_party/WebKit/Source/build/scripts/make_style_builder.py

Issue 2213223004: Revert of Add a fast-path for independent inherited properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@computedstyle_cleanup_rename_final_member_fields
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/build/scripts/make_style_builder.py
diff --git a/third_party/WebKit/Source/build/scripts/make_style_builder.py b/third_party/WebKit/Source/build/scripts/make_style_builder.py
index 1db728908137b0c1242498dfdb2e794e6ef8b6f9..c5d5ca546fc202edd8a63c419f2ee7153b0b3ba1 100755
--- a/third_party/WebKit/Source/build/scripts/make_style_builder.py
+++ b/third_party/WebKit/Source/build/scripts/make_style_builder.py
@@ -59,14 +59,11 @@
set_if_none(property, 'type_name', 'E' + name)
set_if_none(property, 'getter', lower_first(name) if simple_type_name != name else 'get' + name)
set_if_none(property, 'setter', 'set' + name)
- set_if_none(property, 'inherited', False)
set_if_none(property, 'initial', 'initial' + name)
if property['custom_all']:
property['custom_initial'] = True
property['custom_inherit'] = True
property['custom_value'] = True
- if property['inherited']:
- property['is_inherited_setter'] = 'set' + name + 'IsInherited'
property['should_declare_functions'] = not property['use_handlers_for'] and not property['longhands'] \
and not property['direction_aware'] and not property['builder_skip'] \
and not property['descriptor_only']

Powered by Google App Engine
This is Rietveld 408576698