| Index: client/html/generated/html/frog/Notification.dart
|
| diff --git a/client/html/generated/html/frog/Notification.dart b/client/html/generated/html/frog/Notification.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a21649df4b44e215328e07251cd2bcc54079d61c
|
| --- /dev/null
|
| +++ b/client/html/generated/html/frog/Notification.dart
|
| @@ -0,0 +1,34 @@
|
| +
|
| +class _NotificationJs implements Notification native "*Notification" {
|
| +
|
| + String dir;
|
| +
|
| + String replaceId;
|
| +
|
| + _NotificationEventsImpl get on() =>
|
| + new _NotificationEventsImpl(this);
|
| +
|
| + void _addEventListener(String type, EventListener listener, [bool useCapture = null]) native "this.addEventListener(type, listener, useCapture);";
|
| +
|
| + void cancel() native;
|
| +
|
| + bool _dispatchEvent(_EventJs evt) native "return this.dispatchEvent(evt);";
|
| +
|
| + void _removeEventListener(String type, EventListener listener, [bool useCapture = null]) native "this.removeEventListener(type, listener, useCapture);";
|
| +
|
| + void show() native;
|
| +}
|
| +
|
| +class _NotificationEventsImpl extends _EventsImpl implements NotificationEvents {
|
| + _NotificationEventsImpl(_ptr) : super(_ptr);
|
| +
|
| + EventListenerList get click() => _get('click');
|
| +
|
| + EventListenerList get close() => _get('close');
|
| +
|
| + EventListenerList get display() => _get('display');
|
| +
|
| + EventListenerList get error() => _get('error');
|
| +
|
| + EventListenerList get show() => _get('show');
|
| +}
|
|
|