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

Side by Side Diff: client/dom/generated/src/frog/IDBIndex.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class _IDBIndexJs extends _DOMTypeJs implements IDBIndex native "*IDBIndex" { 2 class _IDBIndexJs extends _DOMTypeJs implements IDBIndex native "*IDBIndex" {
3 3
4 String get keyPath() native "return this.keyPath;"; 4 final String keyPath;
5 5
6 bool get multiEntry() native "return this.multiEntry;"; 6 final bool multiEntry;
7 7
8 String get name() native "return this.name;"; 8 final String name;
9 9
10 _IDBObjectStoreJs get objectStore() native "return this.objectStore;"; 10 final _IDBObjectStoreJs objectStore;
11 11
12 bool get unique() native "return this.unique;"; 12 final bool unique;
13 13
14 _IDBRequestJs count([_IDBKeyRangeJs range = null]) native; 14 _IDBRequestJs count([_IDBKeyRangeJs range = null]) native;
15 15
16 _IDBRequestJs getObject(_IDBKeyJs key) native; 16 _IDBRequestJs getObject(_IDBKeyJs key) native;
17 17
18 _IDBRequestJs getKey(_IDBKeyJs key) native; 18 _IDBRequestJs getKey(_IDBKeyJs key) native;
19 19
20 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native; 20 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native;
21 21
22 _IDBRequestJs openKeyCursor([_IDBKeyRangeJs range = null, int direction = null ]) native; 22 _IDBRequestJs openKeyCursor([_IDBKeyRangeJs range = null, int direction = null ]) native;
23 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698