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

Unified Diff: client/dom/generated/src/frog/IDBIndex.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 | « client/dom/generated/src/frog/IDBFactory.dart ('k') | client/dom/generated/src/frog/IDBKey.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/IDBIndex.dart
diff --git a/client/dom/generated/src/frog/IDBIndex.dart b/client/dom/generated/src/frog/IDBIndex.dart
index cb3e3d1f8fac2c35b29896238b735871051fc38c..79e7b42e65ac86aa93630845099b346df595f4cf 100644
--- a/client/dom/generated/src/frog/IDBIndex.dart
+++ b/client/dom/generated/src/frog/IDBIndex.dart
@@ -1,5 +1,5 @@
-class IDBIndexJS implements IDBIndex native "*IDBIndex" {
+class IDBIndexJs extends DOMTypeJs implements IDBIndex native "*IDBIndex" {
String get keyPath() native "return this.keyPath;";
@@ -7,21 +7,17 @@ class IDBIndexJS implements IDBIndex native "*IDBIndex" {
String get name() native "return this.name;";
- IDBObjectStoreJS get objectStore() native "return this.objectStore;";
+ IDBObjectStoreJs get objectStore() native "return this.objectStore;";
bool get unique() native "return this.unique;";
- IDBRequestJS count([IDBKeyRangeJS range = null]) native;
+ IDBRequestJs count([IDBKeyRangeJs range = null]) native;
- IDBRequestJS getObject(IDBKeyJS key) native;
+ IDBRequestJs getObject(IDBKeyJs key) native;
- IDBRequestJS getKey(IDBKeyJS key) native;
+ IDBRequestJs getKey(IDBKeyJs key) native;
- IDBRequestJS openCursor([IDBKeyRangeJS range = null, int direction = null]) native;
+ IDBRequestJs openCursor([IDBKeyRangeJs range = null, int direction = null]) native;
- IDBRequestJS openKeyCursor([IDBKeyRangeJS range = null, int direction = null]) native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
+ IDBRequestJs openKeyCursor([IDBKeyRangeJs range = null, int direction = null]) native;
}
« no previous file with comments | « client/dom/generated/src/frog/IDBFactory.dart ('k') | client/dom/generated/src/frog/IDBKey.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698