| OLD | NEW |
| 1 | 1 |
| 2 class WorkerContext native "*WorkerContext" { | 2 class WorkerContext native "*WorkerContext" { |
| 3 | 3 |
| 4 static final int PERSISTENT = 1; | 4 static final int PERSISTENT = 1; |
| 5 | 5 |
| 6 static final int TEMPORARY = 0; | 6 static final int TEMPORARY = 0; |
| 7 | 7 |
| 8 WorkerLocation location; | 8 WorkerLocation location; |
| 9 | 9 |
| 10 WorkerNavigator navigator; | 10 WorkerNavigator navigator; |
| 11 | 11 |
| 12 EventListener onerror; | 12 EventListener onerror; |
| 13 | 13 |
| 14 WorkerContext self; | 14 WorkerContext self; |
| 15 | 15 |
| 16 IDBFactory webkitIndexedDB; | |
| 17 | |
| 18 NotificationCenter webkitNotifications; | 16 NotificationCenter webkitNotifications; |
| 19 | 17 |
| 20 DOMURL webkitURL; | 18 DOMURL webkitURL; |
| 21 | 19 |
| 22 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 20 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 23 | 21 |
| 24 void clearInterval(int handle) native; | 22 void clearInterval(int handle) native; |
| 25 | 23 |
| 26 void clearTimeout(int handle) native; | 24 void clearTimeout(int handle) native; |
| 27 | 25 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 46 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size) native; | 44 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size) native; |
| 47 | 45 |
| 48 EntrySync webkitResolveLocalFileSystemSyncURL(String url) native; | 46 EntrySync webkitResolveLocalFileSystemSyncURL(String url) native; |
| 49 | 47 |
| 50 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k = null, ErrorCallback errorCallback = null]) native; | 48 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k = null, ErrorCallback errorCallback = null]) native; |
| 51 | 49 |
| 52 var dartObjectLocalStorage; | 50 var dartObjectLocalStorage; |
| 53 | 51 |
| 54 String get typeName() native; | 52 String get typeName() native; |
| 55 } | 53 } |
| OLD | NEW |