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

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

Issue 8894029: Generate EventListener attributes of non-EventTarget classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 9 years 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 IDBRequest native "*IDBRequest" { 2 class IDBRequest native "*IDBRequest" {
3 3
4 static final int DONE = 2; 4 static final int DONE = 2;
5 5
6 static final int LOADING = 1; 6 static final int LOADING = 1;
7 7
8 int errorCode; 8 int errorCode;
9 9
10 EventListener onerror;
11
12 EventListener onsuccess;
13
10 int readyState; 14 int readyState;
11 15
12 IDBAny result; 16 IDBAny result;
13 17
14 IDBAny source; 18 IDBAny source;
15 19
16 IDBTransaction transaction; 20 IDBTransaction transaction;
17 21
18 String webkitErrorMessage; 22 String webkitErrorMessage;
19 23
20 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 24 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
21 25
22 bool dispatchEvent(Event evt) native; 26 bool dispatchEvent(Event evt) native;
23 27
24 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 28 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
25 29
26 var dartObjectLocalStorage; 30 var dartObjectLocalStorage;
27 31
28 String get typeName() native; 32 String get typeName() native;
29 } 33 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/IDBDatabase.dart ('k') | client/dom/generated/src/frog/IDBTransaction.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698