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

Unified Diff: lib/dom/dom.dart

Issue 10584031: Proper support for IDL arrays in generators. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Next iteration Created 8 years, 6 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 | lib/dom/frog/dom_frog.dart » ('j') | lib/dom/scripts/generator.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dom.dart
diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
index 4458367c8c86422b4231a3c0529320470093ebde..6b7c9214cefb7cc3d2ed39e7834355840f4d107f 100644
--- a/lib/dom/dom.dart
+++ b/lib/dom/dom.dart
@@ -5289,7 +5289,7 @@ interface IDBObjectStore {
IDBRequest count([key_OR_range]);
- IDBIndex createIndex(String name, String keyPath, [Map options]);
+ IDBIndex createIndex(String name, keyPath, [Map options]);
IDBRequest delete(key_OR_keyRange);
@@ -11333,7 +11333,7 @@ interface WebGLRenderingContext extends CanvasRenderingContext {
WebGLActiveInfo getActiveUniform(WebGLProgram program, int index);
- List getAttachedShaders(WebGLProgram program);
+ List<Object> getAttachedShaders(WebGLProgram program);
int getAttribLocation(WebGLProgram program, String name);
@@ -11363,6 +11363,8 @@ interface WebGLRenderingContext extends CanvasRenderingContext {
String getShaderSource(WebGLShader shader);
+ List<String> getSupportedExtensions();
+
Object getTexParameter(int target, int pname);
Object getUniform(WebGLProgram program, WebGLUniformLocation location);
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | lib/dom/scripts/generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698