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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 String get keyPath() native "return this.keyPath;";
5 5
6 bool get multiEntry() native "return this.multiEntry;"; 6 bool get multiEntry() native "return this.multiEntry;";
7 7
8 String get name() native "return this.name;"; 8 String get name() native "return this.name;";
9 9
10 IDBObjectStoreJs get objectStore() native "return this.objectStore;"; 10 _IDBObjectStoreJs get objectStore() native "return this.objectStore;";
11 11
12 bool get unique() native "return this.unique;"; 12 bool get unique() native "return this.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]) na tive; 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
« 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