| Index: tools/dom/scripts/systemnative.py
|
| diff --git a/tools/dom/scripts/systemnative.py b/tools/dom/scripts/systemnative.py
|
| index 4ef1c98b0b2b1778f8a30f7c900dde1d1c496146..81023b6e9e6f869aaf5fe9a42cdac6c3ac2ccbe0 100644
|
| --- a/tools/dom/scripts/systemnative.py
|
| +++ b/tools/dom/scripts/systemnative.py
|
| @@ -471,13 +471,13 @@ class DartiumBackend(HtmlDartGenerator):
|
| else:
|
| template = ' $CALL;\n'
|
|
|
| - overload_name = '%s_%s' % (operation.id, version[0])
|
| + overload_name = '_%s_%s' % (operation.id, version[0])
|
| version[0] += 1
|
| argument_list = ', '.join(parameter_names[:argument_count])
|
| - call = '_%s(%s)' % (overload_name, argument_list)
|
| + call = '%s(%s)' % (overload_name, argument_list)
|
| body.Emit(template, CHECKS=' && '.join(checks), CALL=call)
|
|
|
| - dart_declaration = '%s%s _%s(%s)' % (
|
| + dart_declaration = '%s%s %s(%s)' % (
|
| 'static ' if operation.is_static else '',
|
| self.SecureOutputType(operation.type.id),
|
| overload_name, argument_list)
|
|
|