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

Unified Diff: client/dom/generated/src/frog/IDBKeyRange.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/IDBKey.dart ('k') | client/dom/generated/src/frog/IDBObjectStore.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/IDBKeyRange.dart
diff --git a/client/dom/generated/src/frog/IDBKeyRange.dart b/client/dom/generated/src/frog/IDBKeyRange.dart
index 5bc5067a813bc3fbc348faab64b54b5061417a98..9abae598efd9f565de66ed80a95e59918cdc05c7 100644
--- a/client/dom/generated/src/frog/IDBKeyRange.dart
+++ b/client/dom/generated/src/frog/IDBKeyRange.dart
@@ -1,23 +1,19 @@
-class IDBKeyRangeJS implements IDBKeyRange native "*IDBKeyRange" {
+class IDBKeyRangeJs extends DOMTypeJs implements IDBKeyRange native "*IDBKeyRange" {
- IDBKeyJS get lower() native "return this.lower;";
+ IDBKeyJs get lower() native "return this.lower;";
bool get lowerOpen() native "return this.lowerOpen;";
- IDBKeyJS get upper() native "return this.upper;";
+ IDBKeyJs get upper() native "return this.upper;";
bool get upperOpen() native "return this.upperOpen;";
- IDBKeyRangeJS bound(IDBKeyJS lower, IDBKeyJS upper, [bool lowerOpen = null, bool upperOpen = null]) native;
+ IDBKeyRangeJs bound(IDBKeyJs lower, IDBKeyJs upper, [bool lowerOpen = null, bool upperOpen = null]) native;
- IDBKeyRangeJS lowerBound(IDBKeyJS bound, [bool open = null]) native;
+ IDBKeyRangeJs lowerBound(IDBKeyJs bound, [bool open = null]) native;
- IDBKeyRangeJS only(IDBKeyJS value) native;
+ IDBKeyRangeJs only(IDBKeyJs value) native;
- IDBKeyRangeJS upperBound(IDBKeyJS bound, [bool open = null]) native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
+ IDBKeyRangeJs upperBound(IDBKeyJs bound, [bool open = null]) native;
}
« no previous file with comments | « client/dom/generated/src/frog/IDBKey.dart ('k') | client/dom/generated/src/frog/IDBObjectStore.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698