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

Unified Diff: Source/build/scripts/name_utilities.py

Issue 410953002: Merge CSSProperties.in and CSSShorthands.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@infiles
Patch Set: Created 6 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
« no previous file with comments | « Source/build/scripts/make_style_shorthands.py ('k') | Source/build/scripts/scripts.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/name_utilities.py
diff --git a/Source/build/scripts/name_utilities.py b/Source/build/scripts/name_utilities.py
index fe026d9ba650246f95869518837d5fd13df87239..274c5039ddd450de59ece11ed8b3663e00482e66 100644
--- a/Source/build/scripts/name_utilities.py
+++ b/Source/build/scripts/name_utilities.py
@@ -74,15 +74,6 @@ def _upper_first(name):
return name[0].upper() + name[1:]
-def camelcase_property_name(property_name):
- """Convert hyphen-separated-name to UpperCamelCase.
-
- E.g., '-foo-bar' becomes 'FooBar'.
- Used for CSS property names.
- """
- return ''.join(_upper_first(word) for word in property_name.split('-'))
-
-
def to_macro_style(name):
s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name)
return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).upper()
« no previous file with comments | « Source/build/scripts/make_style_shorthands.py ('k') | Source/build/scripts/scripts.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698