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

Side by Side Diff: client/dom/generated/src/frog/IDBDatabase.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 IDBDatabaseJs extends DOMTypeJs implements IDBDatabase native "*IDBDatabas e" { 2 class _IDBDatabaseJs extends _DOMTypeJs implements IDBDatabase native "*IDBDatab ase" {
3 3
4 String get name() native "return this.name;"; 4 String get name() native "return this.name;";
5 5
6 EventListener get onabort() native "return this.onabort;"; 6 EventListener get onabort() native "return this.onabort;";
7 7
8 void set onabort(EventListener value) native "this.onabort = value;"; 8 void set onabort(EventListener value) native "this.onabort = value;";
9 9
10 EventListener get onerror() native "return this.onerror;"; 10 EventListener get onerror() native "return this.onerror;";
11 11
12 void set onerror(EventListener value) native "this.onerror = value;"; 12 void set onerror(EventListener value) native "this.onerror = value;";
13 13
14 EventListener get onversionchange() native "return this.onversionchange;"; 14 EventListener get onversionchange() native "return this.onversionchange;";
15 15
16 void set onversionchange(EventListener value) native "this.onversionchange = v alue;"; 16 void set onversionchange(EventListener value) native "this.onversionchange = v alue;";
17 17
18 String get version() native "return this.version;"; 18 String get version() native "return this.version;";
19 19
20 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 20 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
21 21
22 void close() native; 22 void close() native;
23 23
24 IDBObjectStoreJs createObjectStore(String name) native; 24 _IDBObjectStoreJs createObjectStore(String name) native;
25 25
26 void deleteObjectStore(String name) native; 26 void deleteObjectStore(String name) native;
27 27
28 bool dispatchEvent(EventJs evt) native; 28 bool dispatchEvent(_EventJs evt) native;
29 29
30 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 30 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
31 31
32 IDBVersionChangeRequestJs setVersion(String version) native; 32 _IDBVersionChangeRequestJs setVersion(String version) native;
33 33
34 IDBTransactionJs transaction(String storeName, int mode) native; 34 _IDBTransactionJs transaction(String storeName, int mode) native;
35 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/IDBCursorWithValue.dart ('k') | client/dom/generated/src/frog/IDBDatabaseError.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698