Chromium Code Reviews| Index: lib/html/scripts/systemdart2js.py |
| =================================================================== |
| --- lib/html/scripts/systemdart2js.py (revision 12802) |
| +++ lib/html/scripts/systemdart2js.py (working copy) |
| @@ -134,6 +134,9 @@ |
| pass |
| def _ImplClassName(self, type_name): |
| + name = type_name |
| + if type_name in nativified_classes: |
| + name = nativified_classes[type_name] |
| return '_' + type_name + 'Js' |
| def _EmitFactoryProvider(self, interface_name, constructor_info): |