| Index: tools/dom/scripts/htmldartgenerator.py
|
| diff --git a/tools/dom/scripts/htmldartgenerator.py b/tools/dom/scripts/htmldartgenerator.py
|
| index 30ccdd03614008e848de99e8d068467101e381d9..f21e49fe39e6df5bca4775cba872120da6c1b69c 100644
|
| --- a/tools/dom/scripts/htmldartgenerator.py
|
| +++ b/tools/dom/scripts/htmldartgenerator.py
|
| @@ -388,10 +388,10 @@ class HtmlDartGenerator(object):
|
| ' $FACTORY.create$(CTOR)(length);\n'
|
| '\n $(LIST_ANNOTATIONS)factory $CTOR.fromList(List<$TYPE> list) =>\n'
|
| ' $FACTORY.create$(CTOR)_fromList(list);\n'
|
| - '\n $(BUFFER_ANNOTATIONS)factory $CTOR.fromBuffer(ArrayBuffer buffer, '
|
| + '\n $(BUFFER_ANNOTATIONS)factory $CTOR.view(ByteBuffer buffer, '
|
| '[int byteOffset, int length]) => \n'
|
| ' $FACTORY.create$(CTOR)_fromBuffer(buffer, byteOffset, length);\n',
|
| - CTOR=self._interface.id,
|
| + CTOR=self._renamer.RenameInterface(interface),
|
| ANNOTATIONS=annotations,
|
| LIST_ANNOTATIONS=fromListAnnotations,
|
| BUFFER_ANNOTATIONS=fromBufferAnnotations,
|
|
|