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 _html_interface_renames = { | 6 _html_interface_renames = { |
| 7 'DOMFormData': 'FormData', |
7 'DOMWindow': 'Window', | 8 'DOMWindow': 'Window', |
8 'WebKitAnimation': 'Animation', | 9 'WebKitAnimation': 'Animation', |
9 'WebKitAnimationEvent': 'AnimationEvent', | 10 'WebKitAnimationEvent': 'AnimationEvent', |
10 'WebKitAnimationList': 'AnimationList', | 11 'WebKitAnimationList': 'AnimationList', |
11 'WebKitBlobBuilder': 'BlobBuilder', | 12 'WebKitBlobBuilder': 'BlobBuilder', |
12 'WebKitCSSKeyframeRule': 'CSSKeyframeRule', | 13 'WebKitCSSKeyframeRule': 'CSSKeyframeRule', |
13 'WebKitCSSKeyframesRule': 'CSSKeyframesRule', | 14 'WebKitCSSKeyframesRule': 'CSSKeyframesRule', |
14 'WebKitCSSMatrix': 'CSSMatrix', | 15 'WebKitCSSMatrix': 'CSSMatrix', |
15 'WebKitCSSTransformValue': 'CSSTransformValue', | 16 'WebKitCSSTransformValue': 'CSSTransformValue', |
16 'WebKitFlags': 'Flags', | 17 'WebKitFlags': 'Flags', |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 | 303 |
303 def _FindMatch(self, interface, member, member_prefix, candidates): | 304 def _FindMatch(self, interface, member, member_prefix, candidates): |
304 for interface in self._database.Hierarchy(interface): | 305 for interface in self._database.Hierarchy(interface): |
305 html_interface_name = self.RenameInterface(interface) | 306 html_interface_name = self.RenameInterface(interface) |
306 member_name = html_interface_name + '.' + member | 307 member_name = html_interface_name + '.' + member |
307 if member_name in candidates: | 308 if member_name in candidates: |
308 return member_name | 309 return member_name |
309 member_name = html_interface_name + '.' + member_prefix + member | 310 member_name = html_interface_name + '.' + member_prefix + member |
310 if member_name in candidates: | 311 if member_name in candidates: |
311 return member_name | 312 return member_name |
OLD | NEW |