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

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 10584031: Proper support for IDL arrays in generators. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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:
Download patch
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index a0a201d90068630ab124acf091d8cd3a1922226e..44ba4f95f2466527280170787a6626cf5ddfc3ce 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -11249,9 +11249,12 @@ class _IDBDatabaseImpl extends _DOMWrapperBase implements IDBDatabase {
if ((storeName_OR_storeNames is List<String> || storeName_OR_storeNames === null) && (mode is String || mode === null)) {
return _transaction_1(storeName_OR_storeNames, mode);
}
- if ((storeName_OR_storeNames is String || storeName_OR_storeNames === null) && (mode is String || mode === null)) {
+ if ((storeName_OR_storeNames is List<String> || storeName_OR_storeNames === null) && (mode is String || mode === null)) {
return _transaction_2(storeName_OR_storeNames, mode);
}
+ if ((storeName_OR_storeNames is String || storeName_OR_storeNames === null) && (mode is String || mode === null)) {
+ return _transaction_3(storeName_OR_storeNames, mode);
+ }
throw "Incorrect number or type of arguments";
}
@@ -11259,6 +11262,8 @@ class _IDBDatabaseImpl extends _DOMWrapperBase implements IDBDatabase {
IDBTransaction _transaction_2(storeName_OR_storeNames, mode) native "IDBDatabase_transaction_2_Callback";
+ IDBTransaction _transaction_3(storeName_OR_storeNames, mode) native "IDBDatabase_transaction_3_Callback";
+
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -11538,16 +11543,29 @@ class _IDBObjectStoreImpl extends _DOMWrapperBase implements IDBObjectStore {
IDBRequest _count_3(key_OR_range) native "IDBObjectStore_count_3_Callback";
IDBIndex createIndex(name, keyPath, [options = _null]) {
- if (options === _null) {
+ if ((name is String || name === null) && (keyPath is List<String> || keyPath === null) && options === _null) {
return _createIndex_1(name, keyPath);
}
- return _createIndex_2(name, keyPath, options);
+ if ((name is String || name === null) && (keyPath is List<String> || keyPath === null) && (options is Map || options === null)) {
+ return _createIndex_2(name, keyPath, options);
+ }
+ if ((name is String || name === null) && (keyPath is String || keyPath === null) && options === _null) {
+ return _createIndex_3(name, keyPath);
+ }
+ if ((name is String || name === null) && (keyPath is String || keyPath === null) && (options is Map || options === null)) {
+ return _createIndex_4(name, keyPath, options);
+ }
+ throw "Incorrect number or type of arguments";
}
IDBIndex _createIndex_1(name, keyPath) native "IDBObjectStore_createIndex_1_Callback";
IDBIndex _createIndex_2(name, keyPath, options) native "IDBObjectStore_createIndex_2_Callback";
+ IDBIndex _createIndex_3(name, keyPath) native "IDBObjectStore_createIndex_3_Callback";
+
+ IDBIndex _createIndex_4(name, keyPath, options) native "IDBObjectStore_createIndex_4_Callback";
+
IDBRequest delete(key_OR_keyRange) {
if ((key_OR_keyRange is IDBKeyRange || key_OR_keyRange === null)) {
return _delete_1(key_OR_keyRange);
@@ -19922,7 +19940,7 @@ class _WebGLRenderingContextImpl extends _CanvasRenderingContextImpl implements
WebGLActiveInfo getActiveUniform(WebGLProgram program, int index) native "WebGLRenderingContext_getActiveUniform_Callback";
- List getAttachedShaders(WebGLProgram program) native "WebGLRenderingContext_getAttachedShaders_Callback";
+ List<Object> getAttachedShaders(WebGLProgram program) native "WebGLRenderingContext_getAttachedShaders_Callback";
int getAttribLocation(WebGLProgram program, String name) native "WebGLRenderingContext_getAttribLocation_Callback";
@@ -19952,6 +19970,8 @@ class _WebGLRenderingContextImpl extends _CanvasRenderingContextImpl implements
String getShaderSource(WebGLShader shader) native "WebGLRenderingContext_getShaderSource_Callback";
+ List<String> getSupportedExtensions() native "WebGLRenderingContext_getSupportedExtensions_Callback";
+
Object getTexParameter(int target, int pname) native "WebGLRenderingContext_getTexParameter_Callback";
Object getUniform(WebGLProgram program, WebGLUniformLocation location) native "WebGLRenderingContext_getUniform_Callback";
@@ -28671,7 +28691,7 @@ interface IDBObjectStore {
IDBRequest count([key_OR_range]);
/** @domName IDBObjectStore.createIndex */
- IDBIndex createIndex(String name, String keyPath, [Map options]);
+ IDBIndex createIndex(String name, keyPath, [Map options]);
/** @domName IDBObjectStore.delete */
IDBRequest delete(key_OR_keyRange);
@@ -38216,7 +38236,7 @@ interface WebGLRenderingContext extends CanvasRenderingContext {
WebGLActiveInfo getActiveUniform(WebGLProgram program, int index);
/** @domName WebGLRenderingContext.getAttachedShaders */
- List getAttachedShaders(WebGLProgram program);
+ List<Object> getAttachedShaders(WebGLProgram program);
/** @domName WebGLRenderingContext.getAttribLocation */
int getAttribLocation(WebGLProgram program, String name);
@@ -38260,6 +38280,9 @@ interface WebGLRenderingContext extends CanvasRenderingContext {
/** @domName WebGLRenderingContext.getShaderSource */
String getShaderSource(WebGLShader shader);
+ /** @domName WebGLRenderingContext.getSupportedExtensions */
+ List<String> getSupportedExtensions();
+
/** @domName WebGLRenderingContext.getTexParameter */
Object getTexParameter(int target, int pname);

Powered by Google App Engine
This is Rietveld 408576698