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

Unified Diff: client/dom/scripts/fremontcutbuilder.py

Issue 9466036: Fix parsing of DOMString[] in IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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: client/dom/scripts/fremontcutbuilder.py
diff --git a/client/dom/scripts/fremontcutbuilder.py b/client/dom/scripts/fremontcutbuilder.py
index 814108ee8dd1bcb0c0271c310bfba364c0600788..c79ac3f788d47fb4740557a674ec818022ca737e 100755
--- a/client/dom/scripts/fremontcutbuilder.py
+++ b/client/dom/scripts/fremontcutbuilder.py
@@ -141,6 +141,7 @@ def main():
optional_argument_whitelist = [
('CSSStyleDeclaration', 'setProperty', 'priority'),
+ # TODO(sra): Issue 1812 ('IDBDatabase', 'transaction', 'mode'),
]
for dir_name in webkit_dirs:
@@ -153,8 +154,7 @@ def main():
source='WebKit',
rename_operation_arguments_on_merge=True)
builder.import_idl_file(
- os.path.join(current_dir, '..', 'idl',
- 'dart', 'webkit-supplemental.idl'),
+ os.path.join(current_dir, '..', 'idl', 'dart', 'webkit-supplemental.idl'),
webkit_supplemental_options)
# Import Dart idl:
@@ -163,8 +163,9 @@ def main():
source='Dart',
rename_operation_arguments_on_merge=True)
- builder.import_idl_file(os.path.join(current_dir, '..', 'idl',
- 'dart', 'dart.idl'), dart_options)
+ builder.import_idl_file(
+ os.path.join(current_dir, '..', 'idl', 'dart', 'dart.idl'),
+ dart_options)
builder.set_same_signatures({
'EventListener': 'Function',
« no previous file with comments | « client/dom/generated/src/wrapping/_WebKitNamedFlowWrappingImplementation.dart ('k') | client/dom/scripts/idlnode.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698