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

Side by Side Diff: tools/dom/scripts/generator.py

Issue 12094081: Support for Crome roll 176827->179299. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 """This module provides shared functionality for systems to generate 6 """This module provides shared functionality for systems to generate
7 Dart APIs from the IDL database.""" 7 Dart APIs from the IDL database."""
8 8
9 import copy 9 import copy
10 import json 10 import json
(...skipping 13 matching lines...) Expand all
24 'ElementTraversal', 24 'ElementTraversal',
25 'EventListener', 25 'EventListener',
26 'MediaQueryListListener', 26 'MediaQueryListListener',
27 'MutationCallback', 27 'MutationCallback',
28 'NodeSelector', 28 'NodeSelector',
29 'SVGExternalResourcesRequired', 29 'SVGExternalResourcesRequired',
30 'SVGFilterPrimitiveStandardAttributes', 30 'SVGFilterPrimitiveStandardAttributes',
31 'SVGFitToViewBox', 31 'SVGFitToViewBox',
32 'SVGLangSpace', 32 'SVGLangSpace',
33 'SVGLocatable', 33 'SVGLocatable',
34 'SVGStylable',
35 'SVGTests', 34 'SVGTests',
36 'SVGTransformable', 35 'SVGTransformable',
37 'SVGURIReference', 36 'SVGURIReference',
38 'SVGZoomAndPan', 37 'SVGZoomAndPan',
39 'TimeoutHandler']) 38 'TimeoutHandler'])
40 39
41 def IsPureInterface(interface_name): 40 def IsPureInterface(interface_name):
42 return interface_name in _pure_interfaces 41 return interface_name in _pure_interfaces
43 42
44 43
(...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 self) 1450 self)
1452 1451
1453 if type_data.clazz == 'SVGTearOff': 1452 if type_data.clazz == 'SVGTearOff':
1454 dart_interface_name = self._renamer.RenameInterface( 1453 dart_interface_name = self._renamer.RenameInterface(
1455 self._database.GetInterface(type_name)) 1454 self._database.GetInterface(type_name))
1456 return SVGTearOffIDLTypeInfo( 1455 return SVGTearOffIDLTypeInfo(
1457 type_name, type_data, dart_interface_name, self) 1456 type_name, type_data, dart_interface_name, self)
1458 1457
1459 class_name = '%sIDLTypeInfo' % type_data.clazz 1458 class_name = '%sIDLTypeInfo' % type_data.clazz
1460 return globals()[class_name](type_name, type_data) 1459 return globals()[class_name](type_name, type_data)
OLDNEW
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698