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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 12263046: Fixing DOM's EventStream.isBroadcast (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index cbf24a1339b732208523ca1c0cfd9b61e6d1e7bb..504065ee8320366f0d5a94ac013c693457133fba 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -30046,6 +30046,7 @@ class _EventStream<T extends Event> extends Stream<T> {
// DOM events are inherently multi-subscribers.
Stream<T> asBroadcastStream() => this;
+ bool get isBroadcast => true;
StreamSubscription<T> listen(void onData(T event),
{ void onError(AsyncError error),
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698