| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index f1713666cd276ec0c6c95437c9817eaf5364ec66..0937125c10b994cb01448fcee9da39e72e44bc53 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -332,7 +332,7 @@ class ApplicationCache extends EventTarget {
|
|
|
| @DomName('DOMApplicationCache.progressEvent')
|
| @DocsEditable
|
| - static const EventStreamProvider<Event> progressEvent = const EventStreamProvider<Event>('progress');
|
| + static const EventStreamProvider<ProgressEvent> progressEvent = const EventStreamProvider<ProgressEvent>('progress');
|
|
|
| @DomName('DOMApplicationCache.updatereadyEvent')
|
| @DocsEditable
|
| @@ -419,7 +419,7 @@ class ApplicationCache extends EventTarget {
|
|
|
| @DomName('DOMApplicationCache.onprogress')
|
| @DocsEditable
|
| - Stream<Event> get onProgress => progressEvent.forTarget(this);
|
| + Stream<ProgressEvent> get onProgress => progressEvent.forTarget(this);
|
|
|
| @DomName('DOMApplicationCache.onupdateready')
|
| @DocsEditable
|
|
|