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

Unified Diff: third_party/WebKit/Source/bindings/scripts/idl_reader.py

Issue 2446923002: bindings: Drop |idl_name| from IdlDefinitions (Closed)
Patch Set: Created 4 years, 2 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/bindings/scripts/idl_reader.py
diff --git a/third_party/WebKit/Source/bindings/scripts/idl_reader.py b/third_party/WebKit/Source/bindings/scripts/idl_reader.py
index e9d44be9594cc6b2ef62cef67f5b3a86e2d6fce5..2fb55f1c88f0b1c3fa8644ad8bc68a6c76874092 100644
--- a/third_party/WebKit/Source/bindings/scripts/idl_reader.py
+++ b/third_party/WebKit/Source/bindings/scripts/idl_reader.py
@@ -111,7 +111,7 @@ class IdlReader(object):
if not ast:
raise Exception('Failed to parse %s' % idl_filename)
idl_file_basename, _ = os.path.splitext(os.path.basename(idl_filename))
- definitions = IdlDefinitions(idl_file_basename, ast)
+ definitions = IdlDefinitions(ast)
validate_blink_idl_definitions(
idl_filename, idl_file_basename, definitions)

Powered by Google App Engine
This is Rietveld 408576698