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

Unified Diff: client/dom/frog/dom_frog.dart

Issue 8970013: Make some additional classes hidden so that they are not generated when not (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
===================================================================
--- client/dom/frog/dom_frog.dart (revision 2501)
+++ client/dom/frog/dom_frog.dart (working copy)
@@ -2396,7 +2396,7 @@
String get typeName() native;
}
-class Float32Array extends ArrayBufferView implements List<num> native "Float32Array" {
+class Float32Array extends ArrayBufferView implements List<num> native "*Float32Array" {
factory Float32Array(int length) => _construct(length);
@@ -2417,7 +2417,7 @@
Float32Array subarray(int start, [int end = null]) native;
}
-class Float64Array extends ArrayBufferView implements List<num> native "Float64Array" {
+class Float64Array extends ArrayBufferView implements List<num> native "*Float64Array" {
factory Float64Array(int length) => _construct(length);
@@ -4366,7 +4366,7 @@
String get typeName() native;
}
-class Int16Array extends ArrayBufferView implements List<int> native "Int16Array" {
+class Int16Array extends ArrayBufferView implements List<int> native "*Int16Array" {
factory Int16Array(int length) => _construct(length);
@@ -4387,7 +4387,7 @@
Int16Array subarray(int start, [int end = null]) native;
}
-class Int32Array extends ArrayBufferView implements List<int> native "Int32Array" {
+class Int32Array extends ArrayBufferView implements List<int> native "*Int32Array" {
factory Int32Array(int length) => _construct(length);
@@ -4408,7 +4408,7 @@
Int32Array subarray(int start, [int end = null]) native;
}
-class Int8Array extends ArrayBufferView implements List<int> native "Int8Array" {
+class Int8Array extends ArrayBufferView implements List<int> native "*Int8Array" {
factory Int8Array(int length) => _construct(length);
@@ -7694,7 +7694,7 @@
SVGMatrix getTransformToElement(SVGElement element) native;
}
-class SVGPathSeg native "SVGPathSeg" {
+class SVGPathSeg native "*SVGPathSeg" {
sra1 2011/12/16 04:05:11 Where was SVGPathSeg a problem? It is in the list
static final int PATHSEG_ARC_ABS = 10;
@@ -9401,7 +9401,7 @@
void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail) native;
}
-class Uint16Array extends ArrayBufferView implements List<int> native "Uint16Array" {
+class Uint16Array extends ArrayBufferView implements List<int> native "*Uint16Array" {
factory Uint16Array(int length) => _construct(length);
@@ -9422,7 +9422,7 @@
Uint16Array subarray(int start, [int end = null]) native;
}
-class Uint32Array extends ArrayBufferView implements List<int> native "Uint32Array" {
+class Uint32Array extends ArrayBufferView implements List<int> native "*Uint32Array" {
factory Uint32Array(int length) => _construct(length);
@@ -9443,7 +9443,7 @@
Uint32Array subarray(int start, [int end = null]) native;
}
-class Uint8Array extends ArrayBufferView implements List<int> native "Uint8Array" {
+class Uint8Array extends ArrayBufferView implements List<int> native "*Uint8Array" {
factory Uint8Array(int length) => _construct(length);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698