Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: tools/dom/scripts/htmldartgenerator.py

Issue 12929005: dart:typeddata for dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revert status change Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/dom/scripts/htmldartgenerator.py
diff --git a/tools/dom/scripts/htmldartgenerator.py b/tools/dom/scripts/htmldartgenerator.py
index cebafab4dd146659431d1b26536537b4950930a8..0d00b04b4441a2e5bd2e4657e84b0e5220766308 100644
--- a/tools/dom/scripts/htmldartgenerator.py
+++ b/tools/dom/scripts/htmldartgenerator.py
@@ -384,10 +384,10 @@ class HtmlDartGenerator(object):
' $FACTORY.create$(CTOR)(length);\n'
'\n $(LIST_ANNOTATIONS)factory $CTOR.fromList(List<$TYPE> list) =>\n'
Anton Muhin 2013/03/19 12:31:24 none as of now
' $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,

Powered by Google App Engine
This is Rietveld 408576698