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

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

Issue 2815773003: Make json5_generator.Writer always take a list of files. (Closed)
Patch Set: Created 3 years, 8 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_css_property_apis.py
diff --git a/third_party/WebKit/Source/build/scripts/make_css_property_apis.py b/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
index 1fd786a2852539c7c3e71919875ca0c4d61eb164..8030aa5ea120d8b625512c0417a2d2b41d5c4051 100755
--- a/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
+++ b/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
@@ -40,7 +40,7 @@ class CSSPropertyAPIWriter(StyleBuilderWriter):
assert len(json5_file_paths) == 2,\
'CSSPropertyAPIWriter requires 2 input json5 files files, got {}.'.format(len(json5_file_paths))
- self.css_property_api_methods = Json5File.load_from_files([json5_file_paths[1]], {}, {})
+ self.css_property_api_methods = Json5File.load_from_files(json5_file_paths[1])
self._outputs = {
'CSSPropertyDescriptor.cpp': self.generate_property_descriptor_cpp,

Powered by Google App Engine
This is Rietveld 408576698