| Index: client/dom/generated/src/frog/WorkerContext.dart
|
| diff --git a/client/dom/generated/src/frog/WorkerContext.dart b/client/dom/generated/src/frog/WorkerContext.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..18c902c4c2f47630b3b677cfcabd6aa0fdfab717
|
| --- /dev/null
|
| +++ b/client/dom/generated/src/frog/WorkerContext.dart
|
| @@ -0,0 +1,35 @@
|
| +
|
| +class WorkerContext native "WorkerContext" {
|
| +
|
| + WorkerLocation location;
|
| +
|
| + WorkerNavigator navigator;
|
| +
|
| + EventListener onerror;
|
| +
|
| + NotificationCenter webkitNotifications;
|
| +
|
| + DOMURL webkitURL;
|
| +
|
| + void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
| +
|
| + void clearInterval(int handle) native;
|
| +
|
| + void clearTimeout(int handle) native;
|
| +
|
| + void close() native;
|
| +
|
| + bool dispatchEvent(Event evt) native;
|
| +
|
| + void importScripts() native;
|
| +
|
| + void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
| +
|
| + int setInterval(TimeoutHandler handler, int timeout) native;
|
| +
|
| + int setTimeout(TimeoutHandler handler, int timeout) native;
|
| +
|
| + var dartObjectLocalStorage;
|
| +
|
| + String get typeName() native;
|
| +}
|
|
|