OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |