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

Unified Diff: bindings/scripts/idl_reader.py

Issue 2753323002: Updated so that any Dart change to an IDL file has // FIXMEDART: comment (Closed)
Patch Set: Updated WebKit change to IDL script made for Dart. Created 3 years, 9 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 | « no previous file | core/frame/NavigatorID.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bindings/scripts/idl_reader.py
diff --git a/bindings/scripts/idl_reader.py b/bindings/scripts/idl_reader.py
index f0952f0e7ab2ac922d59d9f4a8672678ac5093fc..f406c00f93bfd89dd79a8c82e171a83200d3067c 100644
--- a/bindings/scripts/idl_reader.py
+++ b/bindings/scripts/idl_reader.py
@@ -75,6 +75,7 @@ def validate_blink_idl_definitions(idl_filename, idl_file_basename,
class IdlReader(object):
+ # FIXMEDART: Added multi_interface argument and property for IdlReader class.
def __init__(self, interfaces_info=None, outputdir='', multi_interface=False):
self.multi_interface = multi_interface
self.extended_attribute_validator = IDLExtendedAttributeValidator()
@@ -114,6 +115,7 @@ class IdlReader(object):
idl_file_basename, _ = os.path.splitext(os.path.basename(idl_filename))
definitions = IdlDefinitions(idl_file_basename, ast)
+ # FIXMEDART: Added multi_interface.
if not self.multi_interface:
validate_blink_idl_definitions(idl_filename, idl_file_basename, definitions)
else:
« no previous file with comments | « no previous file | core/frame/NavigatorID.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698