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

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

Issue 16376006: Fixing HttpRequest.upload.onProgress. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | « tests/html/xhr_test.dart ('k') | no next file » | 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'RTCPeerConnection': 'RTCPeerConnection,mozRTCPeerConnection', 98 'RTCPeerConnection': 'RTCPeerConnection,mozRTCPeerConnection',
99 99
100 'RTCIceCandidate': 'RTCIceCandidate,mozRTCIceCandidate', 100 'RTCIceCandidate': 'RTCIceCandidate,mozRTCIceCandidate',
101 101
102 'RTCSessionDescription': 'RTCSessionDescription,mozRTCSessionDescription', 102 'RTCSessionDescription': 'RTCSessionDescription,mozRTCSessionDescription',
103 103
104 'TransitionEvent': 'TransitionEvent,WebKitTransitionEvent', 104 'TransitionEvent': 'TransitionEvent,WebKitTransitionEvent',
105 105
106 'WheelEvent': 'WheelEvent,MouseWheelEvent,MouseScrollEvent', 106 'WheelEvent': 'WheelEvent,MouseWheelEvent,MouseScrollEvent',
107 107
108 'XMLHttpRequestUpload': 'XMLHttpRequestUpload,XMLHttpRequestEventTarget',
109
108 }, dart2jsOnly=True) 110 }, dart2jsOnly=True)
109 111
110 def IsRegisteredType(type_name): 112 def IsRegisteredType(type_name):
111 return type_name in _idl_type_registry 113 return type_name in _idl_type_registry
112 114
113 def MakeNativeSpec(javascript_binding_name): 115 def MakeNativeSpec(javascript_binding_name):
114 if javascript_binding_name in _dart2js_dom_custom_native_specs: 116 if javascript_binding_name in _dart2js_dom_custom_native_specs:
115 return _dart2js_dom_custom_native_specs[javascript_binding_name] 117 return _dart2js_dom_custom_native_specs[javascript_binding_name]
116 else: 118 else:
117 # Make the class 'hidden' so it is dynamically patched at runtime. This 119 # Make the class 'hidden' so it is dynamically patched at runtime. This
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 type_name, type_data, dart_interface_name, self) 1143 type_name, type_data, dart_interface_name, self)
1142 1144
1143 if type_data.clazz == 'BasicTypedList': 1145 if type_data.clazz == 'BasicTypedList':
1144 dart_interface_name = self._renamer.RenameInterface( 1146 dart_interface_name = self._renamer.RenameInterface(
1145 self._database.GetInterface(type_name)) 1147 self._database.GetInterface(type_name))
1146 return BasicTypedListIDLTypeInfo( 1148 return BasicTypedListIDLTypeInfo(
1147 type_name, type_data, dart_interface_name, self) 1149 type_name, type_data, dart_interface_name, self)
1148 1150
1149 class_name = '%sIDLTypeInfo' % type_data.clazz 1151 class_name = '%sIDLTypeInfo' % type_data.clazz
1150 return globals()[class_name](type_name, type_data) 1152 return globals()[class_name](type_name, type_data)
OLDNEW
« no previous file with comments | « tests/html/xhr_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698