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

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

Issue 9117013: Refresh dart:dom from WebKit. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | client/dom/generated/src/frog/Float32Array.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index 5e879c8949074b9a97db0781c8c303973e9f4171..426d7ac814c35b0a5b5cfc3aa5598b181ab79e85 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -2697,6 +2697,8 @@ class Float32Array extends ArrayBufferView implements List<num> native "*Float32
void operator[]=(int index, num value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Float32Array subarray(int start, [int end = null]) native;
}
@@ -2718,6 +2720,8 @@ class Float64Array extends ArrayBufferView implements List<num> native "*Float64
void operator[]=(int index, num value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Float64Array subarray(int start, [int end = null]) native;
}
@@ -5492,6 +5496,8 @@ class Int16Array extends ArrayBufferView implements List<int> native "*Int16Arra
void operator[]=(int index, int value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Int16Array subarray(int start, [int end = null]) native;
}
@@ -5513,6 +5519,8 @@ class Int32Array extends ArrayBufferView implements List<int> native "*Int32Arra
void operator[]=(int index, int value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Int32Array subarray(int start, [int end = null]) native;
}
@@ -5534,6 +5542,8 @@ class Int8Array extends ArrayBufferView implements List<int> native "*Int8Array"
void operator[]=(int index, int value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Int8Array subarray(int start, [int end = null]) native;
}
@@ -11097,6 +11107,8 @@ class Uint16Array extends ArrayBufferView implements List<int> native "*Uint16Ar
void operator[]=(int index, int value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Uint16Array subarray(int start, [int end = null]) native;
}
@@ -11118,6 +11130,8 @@ class Uint32Array extends ArrayBufferView implements List<int> native "*Uint32Ar
void operator[]=(int index, int value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Uint32Array subarray(int start, [int end = null]) native;
}
@@ -11139,6 +11153,8 @@ class Uint8Array extends ArrayBufferView implements List<int> native "*Uint8Arra
void operator[]=(int index, int value) native;
+ void setElements(Object array, [int offset = null]) native;
+
Uint8Array subarray(int start, [int end = null]) native;
}
@@ -12020,7 +12036,7 @@ class WebGLRenderingContext extends CanvasRenderingContext native "*WebGLRenderi
WebGLActiveInfo getActiveUniform(WebGLProgram program, int index) native;
- void getAttachedShaders(WebGLProgram program) native;
+ List getAttachedShaders(WebGLProgram program) native;
int getAttribLocation(WebGLProgram program, String name) native;
« no previous file with comments | « no previous file | client/dom/generated/src/frog/Float32Array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698