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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 15820013: Fixing type of ApplicationCache.onProgress. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmleventgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmleventgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698