| Index: tools/dom/scripts/systemhtml.py
|
| diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py
|
| index f960434674d7d21029f23ef0943997db9b670698..c40482412c7ba17430ad38ebf91a0dc0f4151489 100644
|
| --- a/tools/dom/scripts/systemhtml.py
|
| +++ b/tools/dom/scripts/systemhtml.py
|
| @@ -17,6 +17,7 @@ _js_custom_members = set([
|
| 'AudioBufferSourceNode.stop',
|
| 'AudioContext.createGain',
|
| 'AudioContext.createScriptProcessor',
|
| + 'CanvasRenderingContext2D.lineDashOffset',
|
| 'Console.memory',
|
| 'Console.profiles',
|
| 'Console.assertCondition',
|
| @@ -932,7 +933,8 @@ class Dart2JSBackend(HtmlDartGenerator):
|
| TARGET=target,
|
| PARAMS=', '.join(target_parameters))
|
|
|
| - declaration = '%s%s %s(%s)' % (
|
| + declaration = '%s%s%s %s(%s)' % (
|
| + self._Annotations(info.type_name, info.declared_name),
|
| 'static ' if info.IsStatic() else '',
|
| return_type,
|
| html_name,
|
|
|